Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: CXSPA-9076 ACC 264.1 (Level A): Product Configuration _ Link _ Item count not read #19912

Merged
merged 8 commits into from
Jan 23, 2025
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
<nav [attr.aria-label]="'common.breadcrumbs' | cxTranslate" tabindex="-1">
<ol [attr.aria-label]="'common.breadcrumbs' | cxTranslate">
<li *ngFor="let crumb of crumbs$ | async; let last = last">
<a
[routerLink]="crumb.link"
[innerHTML]="crumb.label"
[attr.aria-label]="
<ng-container *ngIf="crumbs$ | async as crumbList">
<nav [attr.aria-label]="'common.breadcrumbs' | cxTranslate" tabindex="-1">
<ol [attr.aria-label]="'common.breadcrumbs' | cxTranslate">
<li *ngFor="let crumb of crumbList; let i = index; let last = last">
<a [routerLink]="crumb.link" [innerHTML]="crumb.label" [attr.aria-label]="
last
? ('common.breadcrumbsCurrentPage' | cxTranslate) +
' ' +
crumb.label
: crumb.label
crumb.label+ (i+1) +' of '+ crumbList.length
: crumb.label + (i+1) +' of '+ crumbList.length
andreighervan7 marked this conversation as resolved.
Show resolved Hide resolved
"
></a>
</li>
</ol>
</nav>
</ng-container>

<!-- TODO: Remove feature flag next major release -->
<ng-container *cxFeature="'a11yPreventSRFocusOnHiddenElements'">
Expand Down
Loading