Fix sorting

This commit is contained in:
kolaente 2021-07-27 18:27:41 +02:00
parent 7ab100e29f
commit 3382569d2b
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 2 additions and 2 deletions

View File

@ -149,9 +149,9 @@ export default {
if (a.done > b.done)
return 1
if (a.id > b.id)
if (a.position < b.position)
return -1
if (a.id < b.id)
if (a.position > b.position)
return 1
return 0
})