diff --git a/web/app/(app)/workflows/[id]/runs/[runId]/page.tsx b/web/app/(app)/workflows/[id]/runs/[runId]/page.tsx index 141994f..a31d3f7 100644 --- a/web/app/(app)/workflows/[id]/runs/[runId]/page.tsx +++ b/web/app/(app)/workflows/[id]/runs/[runId]/page.tsx @@ -69,11 +69,7 @@ const pillLed: Record = { function StatusPill({ status, small }: { status: string; small?: boolean }) { const kind = pillKind(status); return ( - + {status} @@ -192,10 +188,7 @@ function StepList({ server, now }: { server: ServerRun; now: number }) { {server.steps.map((st) => { const kind = cellKind(st.status); return ( -
+
{String(st.order + 1).padStart(2, "0")} {cellGlyph[kind]} @@ -340,7 +333,7 @@ export default function RunDetail() { const ago = fmtDuration(now - startMs); return ( -
+
{/* identity bar */}