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 <noreply@anthropic.com>
This commit is contained in:
suraj-markup 2026-03-01 19:22:47 +05:30
parent b894b31a5a
commit 899e47784f
1 changed files with 1 additions and 1 deletions

View File

@ -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