mirror of
https://github.com/DCsunset/taskwarrior-webui.git
synced 2025-08-18 21:43:06 +02:00
Merge pull request #73 from corrodedHash/urgencySortFix
Fixed sorting of urgency
This commit is contained in:
commit
257d79bee7
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