Skip to content
Closed
Show file tree
Hide file tree
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
Empty file added .Jules/palette.md
Empty file.
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 @@ -86,14 +86,16 @@ export function OverviewStats({
type="button"
onClick={() => setExpanded(v => !v)}
className="mt-4 flex items-center gap-2 text-xs text-muted-foreground hover:text-foreground transition-colors"
aria-expanded={expanded}
aria-controls="overview-stats-explanation"
>
<span className={cn('inline-block transition-transform', expanded && 'rotate-90')}>▸</span>
<span aria-hidden="true" className={cn('inline-block transition-transform', expanded && 'rotate-90')}>▸</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