From 59ec3f7cf0c635b0fa562090baabc9370c2ef419 Mon Sep 17 00:00:00 2001 From: cfdaily Date: Thu, 21 May 2026 23:45:02 +0800 Subject: [PATCH] auto-sync: 2026-05-21 23:45:02 --- src/frontend/src/components/EdictBoard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/components/EdictBoard.tsx b/src/frontend/src/components/EdictBoard.tsx index 05b8f1c..569bfda 100644 --- a/src/frontend/src/components/EdictBoard.tsx +++ b/src/frontend/src/components/EdictBoard.tsx @@ -417,7 +417,7 @@ export default function EdictBoard() { const counts: Record = { all: topLevelTasks.length }; topLevelTasks.forEach(t => { counts[t.status] = (counts[t.status] || 0) + 1; }); - const activeCount = topLevelTasks.filter(t => ['working', 'claimed', 'review', 'paused', 'escalated', 'waiting_human'].includes(t.status)).length; + const activeCount = topLevelTasks.filter(t => !t.archived).length; const doneCount = topLevelTasks.filter(t => t.status === 'done').length; const failedCount = topLevelTasks.filter(t => ['failed', 'blocked'].includes(t.status)).length; const reviewCount = topLevelTasks.filter(t => t.status === 'review').length;