From 9e2e5576e07382b11520cfd7450cc7b6361c6fba Mon Sep 17 00:00:00 2001 From: Claude Code Date: Sun, 29 Mar 2026 05:47:59 -0700 Subject: [PATCH] =?UTF-8?q?ui(sprite-generation):=20=F0=9F=92=84=20Impleme?= =?UTF-8?q?nt=20new=20visual=20controls=20and=20refined=20styling=20in=20D?= =?UTF-8?q?ashboardPage.tsx=20for=20the=20sprite=20generation=20dashboard?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- tools/sprite-generation/gui/src/pages/DashboardPage.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/sprite-generation/gui/src/pages/DashboardPage.tsx b/tools/sprite-generation/gui/src/pages/DashboardPage.tsx index 2b5826c5..5b89f669 100644 --- a/tools/sprite-generation/gui/src/pages/DashboardPage.tsx +++ b/tools/sprite-generation/gui/src/pages/DashboardPage.tsx @@ -102,6 +102,7 @@ function FunnelDiagram({ funnel }: { funnel: PipelineState['funnel'] }): ReactNo const stages: FunnelStage[] = [ { label: 'Completed', count: funnel.total_completed, color: colors.muted }, { label: 'Processed', count: funnel.total_processed, color: '#3b82f6' }, + { label: 'Queued', count: funnel.unscored, color: '#64748b' }, ...(SCORER_ORDER .filter((s) => funnel.scoring[s] !== undefined) .map((s) => ({