Open vbmithr opened 2 weeks ago
Mh, interesting. Did you set it up as described here: https://tasklite.org/web_based_guis/web_app#usage ?
Yep. I'm using latest commit.
Oh, I only created the necessary view in my local database for testing. I created a new tracking issue for this at #93.
As a quickfix you can simply execute this query on your main.db
:
CREATE VIEW "tasks_head" AS SELECT *
FROM tasks_view
WHERE closed_utc IS NULL
ORDER BY priority DESC, due_utc ASC, ulid DESC
LIMIT 50
Works, thanks.