Skip to content

Commit

Permalink
Merge pull request #16080 from primefaces/issue-16079
Browse files Browse the repository at this point in the history
Fixed #16079 - Breadcrumb | HomeBreadcrumb can still receive focus fr…
  • Loading branch information
cetincakiroglu authored Jul 25, 2024
2 parents 821e413 + f5286df commit 40c486a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/breadcrumb/breadcrumb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ import { BreadcrumbItemClickEvent } from './breadcrumb.interface';
(click)="onClick($event, home)"
[target]="home.target"
[attr.title]="home.title"
[attr.tabindex]="home.disabled ? null : '0'"
[attr.tabindex]="home.disabled ? '-1' : '0'"
[attr.ariaCurrentWhenActive]="isCurrentUrl(home)"
[fragment]="home.fragment"
[queryParamsHandling]="home.queryParamsHandling"
Expand Down

0 comments on commit 40c486a

Please sign in to comment.