From 4bf3a37ef4d5a1d602b5927d0e953a65dd776e97 Mon Sep 17 00:00:00 2001 From: seonghobae <8172694+seonghobae@users.noreply.github.com> Date: Fri, 21 Aug 2026 20:27:50 +0000 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=8E=A8=20Palette:=20FileRow=20?= =?UTF-8?q?=EC=BB=B4=ED=8F=AC=EB=84=8C=ED=8A=B8=EC=97=90=20aria-label=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `FileRow` 컴포넌트의 버튼에 기존 `title` 속성 외에 스크린 리더용 `aria-label`을 명시적으로 추가하여 접근성을 개선했습니다. --- packages/web/src/components/dashboard/session-files.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/web/src/components/dashboard/session-files.tsx b/packages/web/src/components/dashboard/session-files.tsx index b24b775f..a2f12fc7 100644 --- a/packages/web/src/components/dashboard/session-files.tsx +++ b/packages/web/src/components/dashboard/session-files.tsx @@ -69,6 +69,7 @@ function FileRow({ entry, unit, onJump, tone }: FileRowProps) { type="button" onClick={() => onJump(entry.lastEventIdx)} title={`${entry.path} — jump to last ${unit}`} + aria-label={`Jump to last ${unit} in ${entry.path}`} className="group w-full text-left flex items-center gap-3 px-3 py-2 rounded-md hover:bg-muted/50 transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring" >