Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
10 commits
Select commit Hold shift + click to select a range
4b8408e
🎨 Palette: 의미 μ—†λŠ” μž₯μ‹μš© μ•„μ΄μ½˜μ— aria-hidden 속성 μΆ”κ°€
seonghobae Sep 7, 2026
ae970be
🎨 Palette: 의미 μ—†λŠ” μž₯μ‹μš© μ•„μ΄μ½˜μ— aria-hidden 속성 μΆ”κ°€
seonghobae Sep 7, 2026
b85c449
🎨 Palette: 의미 μ—†λŠ” μž₯μ‹μš© μ•„μ΄μ½˜μ— aria-hidden 속성 μΆ”κ°€
seonghobae Sep 7, 2026
b818098
🎨 Palette: 의미 μ—†λŠ” μž₯μ‹μš© μ•„μ΄μ½˜μ— aria-hidden 속성 μΆ”κ°€
seonghobae Sep 7, 2026
0c3a94d
🎨 Palette: 의미 μ—†λŠ” μž₯μ‹μš© μ•„μ΄μ½˜μ— aria-hidden 속성 μΆ”κ°€
seonghobae Sep 7, 2026
0f62aa2
🎨 Palette: 의미 μ—†λŠ” μž₯μ‹μš© μ•„μ΄μ½˜μ— aria-hidden 속성 μΆ”κ°€
seonghobae Sep 7, 2026
97cf48e
🎨 Palette: 의미 μ—†λŠ” μž₯μ‹μš© μ•„μ΄μ½˜μ— aria-hidden 속성 μΆ”κ°€
seonghobae Sep 8, 2026
62515e2
🎨 Palette: 의미 μ—†λŠ” μž₯μ‹μš© μ•„μ΄μ½˜μ— aria-hidden 속성 μΆ”κ°€
seonghobae Sep 8, 2026
cc909da
🎨 Palette: 의미 μ—†λŠ” μž₯μ‹μš© μ•„μ΄μ½˜μ— aria-hidden 속성 μΆ”κ°€
seonghobae Sep 8, 2026
8975d11
🎨 Palette: 의미 μ—†λŠ” μž₯μ‹μš© μ•„μ΄μ½˜μ— aria-hidden 속성 μΆ”κ°€
seonghobae Sep 8, 2026
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
1 change: 1 addition & 0 deletions packages/web/src/components/dashboard/event-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ function RowView({
<span className="flex-1 min-w-0 flex items-center gap-1 text-sm text-muted-foreground">
{chevron !== undefined && (
<ChevronRight
aria-hidden="true"
className={cn(
"h-3 w-3 shrink-0 transition-transform",
chevron === "expanded" && "rotate-90",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ export function ContextSection({ title, children, defaultOpen = false }: Context
>
<h2 className="text-base font-medium">{title}</h2>
{open ? (
<ChevronUp className="h-4 w-4 text-muted-foreground" />
<ChevronUp aria-hidden="true" className="h-4 w-4 text-muted-foreground" />
) : (
<ChevronDown className="h-4 w-4 text-muted-foreground" />
<ChevronDown aria-hidden="true" className="h-4 w-4 text-muted-foreground" />
)}
</button>
{open && (
Expand Down
Loading