diff --git a/src/app/navbar/expandable-navbar-section/expandable-navbar-section.component.html b/src/app/navbar/expandable-navbar-section/expandable-navbar-section.component.html index 00517a74cf0..b21ff83961d 100644 --- a/src/app/navbar/expandable-navbar-section/expandable-navbar-section.component.html +++ b/src/app/navbar/expandable-navbar-section/expandable-navbar-section.component.html @@ -10,10 +10,11 @@ (click)="toggleSection($event)" (keydown.space)="$event.preventDefault()" (keydown.tab)="deactivateSection($event, false)" + (keydown.arrowDown)="navigateDropdown($event)" aria-haspopup="menu" data-test="navbar-section-toggler" [attr.aria-expanded]="(active$ | async).valueOf()" - [attr.aria-controls]="expandableNavbarSectionId(section.id)" + [attr.aria-controls]="expandableNavbarSectionId()" class="d-flex flex-row flex-nowrap align-items-center gapx-1 ds-menu-toggler-wrapper" [class.disabled]="section.model?.disabled" id="browseDropdown"> @@ -24,7 +25,7 @@