Sort immediate tasks at the start

This commit is contained in:
tcely 2025-03-03 08:58:33 -05:00 committed by GitHub
parent f905f4cf77
commit d277619a73
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -864,7 +864,7 @@ class TasksView(ListView):
) )
sort_keys = ( sort_keys = (
# key, reverse # key, reverse
('run_now', False), ('run_now', True),
('priority', 'ASC' != order), ('priority', 'ASC' != order),
('run_at', False), ('run_at', False),
) )