feat: add canceled status to task status list & remove from option

This commit is contained in:
puriphatt 2024-12-26 13:06:33 +07:00
parent e445d0e7d2
commit 61d3adefae
2 changed files with 5 additions and 5 deletions

View file

@ -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(() =>

View file

@ -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 = [