fix(registry): add aria-label to icon-only actions menu trigger in monitor panel#4904
Merged
Merged
Conversation
decocms Bot
pushed a commit
that referenced
this pull request
Jul 21, 2026
PR: #4904 fix(registry): add aria-label to icon-only actions menu trigger in monitor panel Bump type: patch - decocms (apps/mesh/package.json): 4.82.9 -> 4.82.10 Deploy-Scope: web
This was referenced Jul 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Follows #4903, which added
aria-labelto the icon-only dots-vertical actions-menu trigger inregistry-item-card.tsxandregistry-items-page.tsx. It missed the identical pattern inmonitor-connections-panel.tsx'sConnectionRow, so that trigger was still an unlabeled icon-only button for screen readers.Why a maintainer wants this: it's the same accessibility gap #4903 just closed, left over in a sibling registry view — a one-line-pattern fix, not a new concern.
Change: add
aria-label={Actions for ${title}}to theDropdownMenuTrigger'sButton(titlewas already in scope in this component), matching the exact wording/pattern from #4903. No behavior change — purely an accessibility attribute.To verify: open the registry monitor connections panel and inspect the actions trigger button's accessible name (or grep
apps/mesh/src/web/views/registryforDotsVertical— all three actions triggers now carryaria-label).Locally ran
bun run fmtandcd apps/mesh && bunx tsc --noEmit, both clean. No test needed — pure JSX attribute addition, no logic branch to cover.Summary by cubic
Add an aria-label to the icon-only actions menu button in the registry monitor connections panel (ConnectionRow) to provide a clear accessible name for screen readers. Sets aria-label to "Actions for ${title}" on the trigger Button; no UI or behavior changes.
Written for commit 318fd29. Summary will update on new commits.