Add cancelled status for tasks

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Gros Frumos 2026-03-15 18:22:17 +02:00
parent 6e872121eb
commit bf38532f59
5 changed files with 7 additions and 6 deletions

View file

@ -108,7 +108,7 @@ const filteredDecisions = computed(() => {
function taskStatusColor(s: string) {
const m: Record<string, string> = {
pending: 'gray', in_progress: 'blue', review: 'purple',
done: 'green', blocked: 'red', decomposed: 'yellow',
done: 'green', blocked: 'red', decomposed: 'yellow', cancelled: 'gray',
}
return m[s] || 'gray'
}