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 = [ export const priorities = [
{ {
label: 'Low',
value: 'low', value: 'low',
label: 'Low',
icon: h(ArrowDownIcon), icon: h(ArrowDownIcon),
}, },
{ {
label: 'Medium',
value: 'medium', value: 'medium',
label: 'Medium',
icon: h(ArrowRightIcon), icon: h(ArrowRightIcon),
}, },
{ {
label: 'High',
value: 'high', value: 'high',
label: 'High',
icon: h(ArrowUpIcon), icon: h(ArrowUpIcon),
}, },
] ]