Skip to content
Open
Changes from 1 commit
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: 3 additions & 1 deletion packages/main/src/Breadcrumbs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,9 @@ class Breadcrumbs extends UI5Element implements IToolbarItemContent {
}

get _accessibleNameText() {
return Breadcrumbs.i18nBundle.getText(BREADCRUMBS_ARIA_LABEL);
const baseLabel = Breadcrumbs.i18nBundle.getText(BREADCRUMBS_ARIA_LABEL);
const currentLocation = this._currentLocationText;
return currentLocation ? `${baseLabel} ${currentLocation}` : baseLabel;
}

get _dropdownArrowAccessibleNameText() {
Expand Down
Loading