Entity Actions: Adds a descriptive title to the first action so you know what it does#21739
Merged
nielslyngsoe merged 3 commits intomainfrom Feb 13, 2026
Merged
Conversation
…ndle, otherwise you do not know what it does, unless the icon is very descriptive
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a tooltip/hover title to the “first” entity action button in the entity actions bundle, improving discoverability of what the primary action does in the backoffice UI.
Changes:
- Adds a
titleattribute to the first<uui-button>using the same localized string as the existinglabel.
...I.Client/src/packages/core/components/entity-actions-bundle/entity-actions-bundle.element.ts
Outdated
Show resolved
Hide resolved
This was referenced Apr 2, 2026
Open
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.
This pull request introduces a minor enhancement to the
UmbEntityActionsBundleElementcomponent. The change improves accessibility and usability by adding atitleattribute to the rendered button.The first action is hoisted out into each table row, but you don't necessarily know what it does, because we don't show the label next to it. Instead, we can hint towards the user what the action does by adding a title, which essentially is duplicating the existing
aria-label.