mirror of
https://github.com/DCsunset/taskwarrior-webui.git
synced 2025-08-18 21:43:06 +02:00
Fixed sorting of urgency
This commit is contained in:
parent
3a9a952a9e
commit
71a47b2e53
1 changed files with 1 additions and 1 deletions
|
@ -300,7 +300,7 @@ export default defineComponent({
|
|||
: [{ text: 'Wait', value: 'wait' }]),
|
||||
{ text: 'Until', value: 'until' },
|
||||
{ text: 'Tags', value: 'tags' },
|
||||
{ text: 'Urgency', value: 'urgency', sort: (a: number, b: number) => !(a > b) },
|
||||
{ text: 'Urgency', value: 'urgency', sort: (a: number, b: number) => b - a },
|
||||
{ text: 'Actions', value: 'actions', sortable: false }
|
||||
]);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue