mirror of
https://github.com/Steffo99/todocolors.git
synced 2024-11-22 00:04:18 +00:00
Sort in progress tasks before unfinished ones
This commit is contained in:
parent
0f5fdb038b
commit
63b59bf0eb
1 changed files with 2 additions and 2 deletions
|
@ -15,8 +15,8 @@ const TASK_IMPORTANCE_TO_VALUE = {
|
|||
const TASK_STATUS_TO_VALUE = {
|
||||
"Journaled": 3,
|
||||
"Complete": 2,
|
||||
"InProgress": 1,
|
||||
"Unfinished": 0,
|
||||
"InProgress": 0,
|
||||
"Unfinished": 1,
|
||||
}
|
||||
|
||||
export const GROUPING_MODE_TO_GROUP_SORTER_FUNCTION = {
|
||||
|
|
Loading…
Reference in a new issue