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:
parent
b894b31a5a
commit
899e47784f
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue