Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Pablo200206 committed Aug 16, 2024
1 parent f133858 commit b9d093c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/selectbutton/selectbutton.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const SELECTBUTTON_VALUE_ACCESSOR: any = {
<div
*ngFor="let option of options; let i = index"
pRipple
[attr.tabindex]="i === focusedIndex ? '0' : '-1'"
[attr.tabindex]="i === focusedIndex && !disabled ? '0' : '-1'"
[attr.aria-label]="option.label"
[role]="multiple ? 'checkbox' : 'radio'"
[attr.aria-checked]="isSelected(option)"
Expand Down

0 comments on commit b9d093c

Please sign in to comment.