Add cancelled status for tasks
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
6e872121eb
commit
bf38532f59
5 changed files with 7 additions and 6 deletions
|
|
@ -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'
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue