1
Fork 0
mirror of https://github.com/Steffo99/todocolors.git synced 2024-10-16 07:17:28 +00:00

Sort in progress tasks before unfinished ones

This commit is contained in:
Steffo 2024-09-23 06:37:26 +02:00
parent 0f5fdb038b
commit 63b59bf0eb
Signed by: steffo
GPG key ID: 5ADA3868646C3FC0

View file

@ -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 = {