From 24bcb27640cbf54cd8298d8854b3abf3992734df Mon Sep 17 00:00:00 2001 From: Prakshitha Malla Date: Sat, 30 May 2026 20:20:01 +0530 Subject: [PATCH] fix: added missing aria-label to repository search input node #48 --- components/console/repository-list.tsx | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/components/console/repository-list.tsx b/components/console/repository-list.tsx index efea7ee..b0cc425 100644 --- a/components/console/repository-list.tsx +++ b/components/console/repository-list.tsx @@ -184,6 +184,7 @@ export function RepositoryList({
setSearch(e.target.value)} @@ -232,7 +233,9 @@ export function RepositoryList({ {loading && ( view === "grid" ? (
- {Array.from({ length: 6 }).map((_, i) => )} + {Array.from({ length: 6 }).map((_, i) => ( + + ))}
) : (
@@ -247,7 +250,9 @@ export function RepositoryList({ - {Array.from({ length: 6 }).map((_, i) => )} + {Array.from({ length: 6 }).map((_, i) => ( + + ))}
@@ -289,4 +294,4 @@ export function RepositoryList({ )}
); -} +} \ No newline at end of file