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) => ({