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:
Anso
2026-05-19 18:19:44 -04:00
committed by GitHub
parent e3e5943b57
commit 96d9bb9f76
@@ -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