From 7c6ac0548e5d6a9f40e0c612c873c1f9c375e968 Mon Sep 17 00:00:00 2001 From: ayesha-devx Date: Sat, 4 Jul 2026 20:39:29 +0530 Subject: [PATCH] fix: add aria-labels to terminal icon buttons --- modules/webcontainers/components/terminal.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/webcontainers/components/terminal.tsx b/modules/webcontainers/components/terminal.tsx index 743a32fd..4d7116c2 100644 --- a/modules/webcontainers/components/terminal.tsx +++ b/modules/webcontainers/components/terminal.tsx @@ -475,6 +475,7 @@ const size="sm" onClick={() => setShowSearch(!showSearch)} className="h-6 w-6 p-0" + aria-label={showSearch ? "Hide search" : "Show search"} > @@ -484,6 +485,7 @@ const size="sm" onClick={copyTerminalContent} className="h-6 w-6 p-0" + aria-label="Copy terminal output" > @@ -493,6 +495,7 @@ const size="sm" onClick={downloadTerminalLog} className="h-6 w-6 p-0" + aria-label="Download terminal log" > @@ -502,6 +505,7 @@ const size="sm" onClick={clearTerminal} className="h-6 w-6 p-0" + aria-label="Clear terminal" >