From cd95068af1407e0c185c5f51c6afbf75d1de4446 Mon Sep 17 00:00:00 2001 From: Ralph Loop Date: Sun, 15 Mar 2026 05:22:14 -0500 Subject: [PATCH] fix(accessibility): add aria-label to VariableInspector filter input Adds aria-label="Filter variables" to the filter input in the REPL VariableInspector component for screen reader accessibility. --- src/components/repl/VariableInspector.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/repl/VariableInspector.tsx b/src/components/repl/VariableInspector.tsx index 0ae4ed92..c4128dd1 100644 --- a/src/components/repl/VariableInspector.tsx +++ b/src/components/repl/VariableInspector.tsx @@ -374,6 +374,7 @@ export function VariableInspector() { value={filter()} onInput={(e) => setFilter(e.currentTarget.value)} placeholder="Filter variables..." + aria-label="Filter variables" class="w-full px-2 py-1 text-sm rounded outline-none" style={{ background: "var(--surface-sunken)",