chore: change label/value order in tasks priorities data (#603)

This commit is contained in:
pereira0x 2024-06-15 08:40:07 +01:00 committed by GitHub
parent 88a93ce22e
commit 36ad0f846d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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),
}, },
] ]