Fixed
- Tasks: filters are now correctly re-applied when returning to the Tasks tab (closes #49)
When a filter (e.g. "Open") was active and the user navigated to another tab and back, the filter chip appeared selected but all tasks were displayed. Root cause:render()always fetched/taskswithout query parameters, ignoring the persisted filter state. Fixed by building the same filter query inrender()thatloadTasks()already uses — the initial parallel data fetch now respects the current filters.