You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 /tasks without query parameters, ignoring the persisted filter state. Fixed by building the same filter query in render() that loadTasks() already uses — the initial parallel data fetch now respects the current filters.