ui(sprite-generation): 💄 Implement new visual controls and refined styling in DashboardPage.tsx for the sprite generation dashboard

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Claude Code 2026-03-29 05:47:59 -07:00
parent 6a16652d18
commit 9e2e5576e0

View file

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