mirror of
https://github.com/Studio-Saelix/sencho.git
synced 2026-07-26 11:49:16 +00:00
fix(fleet-secrets): align bundle-row action aria-label with icon ("Send") (#1116)
The bundle-row action uses the lucide Send icon but the button's aria-label was "Push", which surfaced inconsistently to screen-reader users vs the visible/iconic intent. The same action is referred to as "Send" in the feature docs, so standardise on Send everywhere.
This commit is contained in:
@@ -107,7 +107,7 @@ export function SecretsTab() {
|
||||
<Button type="button" variant="ghost" size="icon" onClick={() => setEditing(s)} aria-label="Edit">
|
||||
<Pencil className="w-4 h-4" />
|
||||
</Button>
|
||||
<Button type="button" variant="ghost" size="icon" onClick={() => setPushing(s)} aria-label="Push">
|
||||
<Button type="button" variant="ghost" size="icon" onClick={() => setPushing(s)} aria-label="Send">
|
||||
<Send className="w-4 h-4" />
|
||||
</Button>
|
||||
<Button
|
||||
|
||||
Reference in New Issue
Block a user