From 5a8088a5ec90e55e42ba3ba18480c29dccea4399 Mon Sep 17 00:00:00 2001 From: dominikiwanekhyland <141320833+dominikiwanekhyland@users.noreply.github.com> Date: Thu, 16 Oct 2025 09:05:35 +0200 Subject: [PATCH] [ACS-10321] SR: Personal Files:When navigating the breadcrumb with arrow keys, a button announced as 'dropdown' (#11262) --- .../src/lib/breadcrumb/dropdown-breadcrumb.component.html | 4 +++- lib/content-services/src/lib/i18n/en.json | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/content-services/src/lib/breadcrumb/dropdown-breadcrumb.component.html b/lib/content-services/src/lib/breadcrumb/dropdown-breadcrumb.component.html index 0a646d1143..a6fc572ae3 100644 --- a/lib/content-services/src/lib/breadcrumb/dropdown-breadcrumb.component.html +++ b/lib/content-services/src/lib/breadcrumb/dropdown-breadcrumb.component.html @@ -7,7 +7,9 @@ [tabindex]="hasPreviousNodes() ? 0 : -1" class="adf-dropdown-breadcrumb-trigger" (click)="open()" - [attr.aria-label]="'BREADCRUMB.ARIA-LABEL.DROPDOWN' | translate" + [attr.aria-label]="'BREADCRUMB.ARIA-LABEL.DROPDOWN' | translate:{ folderName: currentNode?.name }" + [attr.aria-haspopup]="hasPreviousNodes() ? 'true' : null" + [attr.aria-expanded]="dropdown?.panelOpen || false" data-automation-id="dropdown-breadcrumb-trigger"> folder diff --git a/lib/content-services/src/lib/i18n/en.json b/lib/content-services/src/lib/i18n/en.json index 7236d50b56..3326b62f5c 100644 --- a/lib/content-services/src/lib/i18n/en.json +++ b/lib/content-services/src/lib/i18n/en.json @@ -660,8 +660,8 @@ }, "BREADCRUMB": { "ARIA-LABEL": { - "BREADCRUMB": "Breadcrumb", - "DROPDOWN": "Dropdown" + "BREADCRUMB": "Breadcrumb navigation", + "DROPDOWN": "Open breadcrumb menu for {{folderName}}" }, "HEADER": { "SELECTED": "Selected ({{ count }})"