From 50cc2350ab404208632fe422f32954c3c882cc6f Mon Sep 17 00:00:00 2001 From: gnezim Date: Mon, 20 Apr 2026 22:00:25 +0300 Subject: [PATCH] =?UTF-8?q?Add=20aria-label=20to=20SearchHistory=20items?= =?UTF-8?q?=20(a11y=20=E2=80=94=20items=20are=20decorative=20without=20tex?= =?UTF-8?q?t=20label)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/ui/layout/SearchHistory.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ui/layout/SearchHistory.tsx b/src/ui/layout/SearchHistory.tsx index ca95cb91..beb48cda 100644 --- a/src/ui/layout/SearchHistory.tsx +++ b/src/ui/layout/SearchHistory.tsx @@ -141,6 +141,7 @@ export const SearchHistory: FC = () => { className="search-history-item" role="button" tabIndex={0} + aria-label={item.label} onClick={() => handleItemClick(item)} onKeyDown={(e) => { if (e.key === "Enter" || e.key === " ") {