feat: add canceled status to task status list & remove from option
This commit is contained in:
parent
e445d0e7d2
commit
61d3adefae
2 changed files with 5 additions and 5 deletions
|
|
@ -23,6 +23,11 @@ const statusList = [
|
||||||
icon: 'mdi-file-check-outline',
|
icon: 'mdi-file-check-outline',
|
||||||
color: 'positive',
|
color: 'positive',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
value: TaskStatus.Canceled,
|
||||||
|
icon: 'mdi-file-remove-outline',
|
||||||
|
color: 'negative',
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
const currStatus = computed(() =>
|
const currStatus = computed(() =>
|
||||||
|
|
|
||||||
|
|
@ -89,11 +89,6 @@ export const taskStatusOrderToggle = [
|
||||||
icon: 'mdi-file-remove-outline',
|
icon: 'mdi-file-remove-outline',
|
||||||
color: 'negative',
|
color: 'negative',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
value: TaskStatus.Canceled,
|
|
||||||
icon: 'mdi-file-remove-outline',
|
|
||||||
color: 'negative',
|
|
||||||
},
|
|
||||||
];
|
];
|
||||||
|
|
||||||
export const column = [
|
export const column = [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue