Skip to content

Commit

Permalink
Bugfix primefaces#13742 fix after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
GiacomoDM committed Oct 11, 2023
1 parent 8875810 commit e6c9ae9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/app/components/steps/steps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import { Subscription } from 'rxjs';
[ngStyle]="item.style"
[class]="item.styleClass"
role="presentation"
[attr.id]="item.id"
pTooltip
[tooltipOptions]="item.tooltipOptions"
[ngClass]="{ 'p-highlight p-steps-current': isActive(item, i), 'p-disabled': item.disabled || (readonly && !isActive(item, i)) }"
Expand All @@ -38,7 +39,6 @@ import { Subscription } from 'rxjs';
(click)="onItemClick($event, item, i)"
(keydown)="onItemKeydown($event, item, i)"
[target]="item.target"
[attr.id]="item.id"
[attr.tabindex]="getItemTabIndex(item, i)"
[attr.aria-selected]="i === activeIndex"
[attr.aria-expanded]="i === activeIndex"
Expand All @@ -63,7 +63,6 @@ import { Subscription } from 'rxjs';
(click)="onItemClick($event, item, i)"
(keydown)="onItemKeydown($event, item, i)"
[target]="item.target"
[attr.id]="item.id"
[attr.tabindex]="getItemTabIndex(item, i)"
[attr.aria-selected]="i === activeIndex"
[attr.aria-expanded]="i === activeIndex"
Expand Down

0 comments on commit e6c9ae9

Please sign in to comment.