Skip to content

Commit

Permalink
fix(Select): add the live region in VCombobox & VSelect
Browse files Browse the repository at this point in the history
  • Loading branch information
tmasrat committed Dec 29, 2023
1 parent 54d2846 commit 6599708
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/vuetify/src/components/VCombobox/VCombobox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -488,6 +488,7 @@ export const VCombobox = genericComponent<new <
onFocusout={ onFocusout }
onScrollPassive={ onListScroll }
tabindex="-1"
aria-live="polite"
color={ props.itemColor ?? props.color }
>
{ slots['prepend-item']?.() }
Expand Down
1 change: 1 addition & 0 deletions packages/vuetify/src/components/VSelect/VSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,7 @@ export const VSelect = genericComponent<new <
onFocusin={ onFocusin }
onScrollPassive={ onListScroll }
tabindex="-1"
aria-live="polite"
color={ props.itemColor ?? props.color }
>
{ slots['prepend-item']?.() }
Expand Down

0 comments on commit 6599708

Please sign in to comment.