From 3c71bf898d22e70156412f19af665e9ba8ecdbb7 Mon Sep 17 00:00:00 2001 From: cfdaily Date: Wed, 20 May 2026 13:21:42 +0800 Subject: [PATCH] auto-sync: 2026-05-20 13:21:42 --- src/frontend/src/components/EdictBoard.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/src/components/EdictBoard.tsx b/src/frontend/src/components/EdictBoard.tsx index a841cba..9e67c46 100644 --- a/src/frontend/src/components/EdictBoard.tsx +++ b/src/frontend/src/components/EdictBoard.tsx @@ -387,7 +387,6 @@ export default function EdictBoard() { const reviewCount = topLevelTasks.filter(t => t.status === 'review').length; const archivedCount = topLevelTasks.filter(t => t.archived).length; - if (!selectedProjectId) return ; if (v2tasksLoading && tasks.length === 0) return ; return ( @@ -424,7 +423,8 @@ export default function EdictBoard() { }} > - {Object.entries(projects).map(([pid, info]: [string, any]) => ( + + {Object.entries(projects).filter(([pid]) => !pid.startsWith('e2e-')).map(([pid, info]: [string, any]) => ( ))}