fix: change label/value order in tasks priorities data

This commit is contained in:
pereira0x 2024-06-12 14:49:51 +01:00
parent a1faecc7d2
commit 5c0799e481

View File

@ -53,18 +53,18 @@ export const statuses = [
export const priorities = [
{
label: 'Low',
value: 'low',
label: 'Low',
icon: h(ArrowDownIcon),
},
{
label: 'Medium',
value: 'medium',
label: 'Medium',
icon: h(ArrowRightIcon),
},
{
label: 'High',
value: 'high',
label: 'High',
icon: h(ArrowUpIcon),
},
]