Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions modules/webcontainers/components/terminal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -475,6 +475,7 @@ const
size="sm"
onClick={() => setShowSearch(!showSearch)}
className="h-6 w-6 p-0"
aria-label={showSearch ? "Hide search" : "Show search"}
>
<Search className="h-3 w-3" />
</Button>
Expand All @@ -484,6 +485,7 @@ const
size="sm"
onClick={copyTerminalContent}
className="h-6 w-6 p-0"
aria-label="Copy terminal output"
>
<Copy className="h-3 w-3" />
</Button>
Expand All @@ -493,6 +495,7 @@ const
size="sm"
onClick={downloadTerminalLog}
className="h-6 w-6 p-0"
aria-label="Download terminal log"
>
<Download className="h-3 w-3" />
</Button>
Expand All @@ -502,6 +505,7 @@ const
size="sm"
onClick={clearTerminal}
className="h-6 w-6 p-0"
aria-label="Clear terminal"
>
<Trash2 className="h-3 w-3" />
</Button>
Expand Down