1
0
mirror of https://github.com/kmein/niveum synced 2026-03-19 03:21:10 +01:00

feat(todo): warn when something is due today

This commit is contained in:
2022-08-19 14:22:17 +02:00
parent 04993972ce
commit ee373fcf3d

View File

@@ -153,10 +153,10 @@ in {
state: ( state: (
if $overdue > 0 then if $overdue > 0 then
"Critical" "Critical"
elif $dueToday == 0 then elif $dueToday > 0 then
"Good" "Warning"
else else
"Info" "Idle"
end end
) )
} }