From 899e47784f21f2789eab9d2a783a61f77345a3fd Mon Sep 17 00:00:00 2001 From: suraj-markup Date: Sun, 1 Mar 2026 19:22:47 +0530 Subject: [PATCH] fix(web): rename stats label from "active" to "working" to match broadened filter The workingSessions stat now includes idle/ready sessions (not just active), so the UI label should say "working" rather than "active" to accurately reflect what's being counted. Co-Authored-By: Claude Opus 4.6 --- packages/web/src/components/Dashboard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web/src/components/Dashboard.tsx b/packages/web/src/components/Dashboard.tsx index a414fc741..41d037e10 100644 --- a/packages/web/src/components/Dashboard.tsx +++ b/packages/web/src/components/Dashboard.tsx @@ -227,7 +227,7 @@ function StatusLine({ stats }: { stats: DashboardStats }) { const parts: Array<{ value: number; label: string; color?: string }> = [ { value: stats.totalSessions, label: "sessions" }, ...(stats.workingSessions > 0 - ? [{ value: stats.workingSessions, label: "active", color: "var(--color-status-working)" }] + ? [{ value: stats.workingSessions, label: "working", color: "var(--color-status-working)" }] : []), ...(stats.openPRs > 0 ? [{ value: stats.openPRs, label: "PRs" }] : []), ...(stats.needsReview > 0