fix(tasks): support status query param in list API and use it in today-tasks widget

The dashboard widget was filtering with a broken filter=status!=done query
param that the list API never interpreted, so completed tasks could appear.
Add a status= todo,in_progress filter to GET /api/tasks and update the widget
to use it (also fix domain badge to use domainId).
This commit is contained in:
2026-08-06 13:53:29 +00:00
parent affdf1661d
commit 2bb28fe65f
2 changed files with 9 additions and 3 deletions
@@ -12,7 +12,8 @@ interface Task {
title: string;
status: string;
priority: string;
domain: string;
domainId?: string;
domain?: string;
}
interface Domain { id: string; name: string; color: string; }
@@ -43,7 +44,7 @@ export function TodayTasksWidget() {
async function fetchTasks() {
try {
const response = await fetch(
'/api/tasks?filter=status!%3D%22done%22&perPage=5&sort=-priority'
'/api/tasks?status=todo,in_progress&perPage=5&sort=-priority'
);
if (response.ok) {
const data = await response.json();
@@ -115,7 +116,7 @@ export function TodayTasksWidget() {
{task.title}
</span>
<Badge variant="outline" className="text-xs">
{domainMap.get(task.domain) || task.domain}
{domainMap.get(task.domainId ?? task.domain ?? '') || task.domainId || task.domain}
</Badge>
</div>
))}