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
4 changes: 3 additions & 1 deletion packages/web/src/components/dashboard/overview-stats.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ 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>
Expand All @@ -93,7 +95,7 @@ export function OverviewStats({
</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