Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions packages/web/src/components/dashboard/overview-stats.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,17 @@ export function OverviewStats({
<button
type="button"
onClick={() => setExpanded(v => !v)}
aria-expanded={expanded}
aria-controls="overview-stats-explanation"
className="mt-4 flex items-center gap-2 text-xs text-muted-foreground hover:text-foreground transition-colors"
>
<span className={cn('inline-block transition-transform', expanded && 'rotate-90')}>β–Έ</span>
<span className={cn('inline-block transition-transform', expanded && 'rotate-90')} aria-hidden="true">β–Έ</span>
<span className="font-medium text-foreground">What do these numbers mean?</span>
<span>β€” {expanded ? 'click to collapse' : 'click to expand'}</span>
<span aria-hidden="true">β€” {expanded ? 'click to collapse' : 'click to expand'}</span>
</button>

{expanded && (
<div className="mt-3 text-xs text-muted-foreground space-y-2 leading-relaxed">
<div id="overview-stats-explanation" className="mt-3 text-xs text-muted-foreground space-y-2 leading-relaxed">
<p>
<span className="font-medium text-foreground">Sessions</span> β€” νŒ€μ›λ“€μ΄ μ‹œμž‘ν•œ Claude Code μ„Έμ…˜ 수.
</p>
Expand Down
Loading