Skip to content

Commit

Permalink
Merge pull request #15161 from davesheldon/Issue-14669
Browse files Browse the repository at this point in the history
Fix #14669 - aria-aria typo
  • Loading branch information
cetincakiroglu authored Mar 26, 2024
2 parents f425a75 + ea416b8 commit a5677fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/components/autocomplete/autocomplete.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export const AUTOCOMPLETE_VALUE_ACCESSOR: any = {
[attr.aria-required]="required"
[attr.aria-expanded]="overlayVisible ?? false"
[attr.aria-controls]="overlayVisible ? id + '_list' : null"
[attr.aria-aria-activedescendant]="focused ? focusedOptionId : undefined"
[attr.aria-activedescendant]="focused ? focusedOptionId : undefined"
(input)="onInput($event)"
(keydown)="onKeyDown($event)"
(change)="onInputChange($event)"
Expand Down Expand Up @@ -157,7 +157,7 @@ export const AUTOCOMPLETE_VALUE_ACCESSOR: any = {
[attr.aria-required]="required"
[attr.aria-expanded]="overlayVisible ?? false"
[attr.aria-controls]="overlayVisible ? id + '_list' : null"
[attr.aria-aria-activedescendant]="focused ? focusedOptionId : undefined"
[attr.aria-activedescendant]="focused ? focusedOptionId : undefined"
(input)="onInput($event)"
(keydown)="onKeyDown($event)"
(change)="onInputChange($event)"
Expand Down

0 comments on commit a5677fd

Please sign in to comment.