File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed
packages/vuetify/src/components Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -603,6 +603,7 @@ export const VAutocomplete = genericComponent<new <
603603 return (
604604 < div
605605 key = { item . value }
606+ aria-hidden = "true"
606607 class = { [
607608 'v-autocomplete__selection' ,
608609 index === selectionIndex . value && [
Original file line number Diff line number Diff line change @@ -650,6 +650,7 @@ export const VCombobox = genericComponent<new <
650650 return (
651651 < div
652652 key = { item . value }
653+ aria-hidden = "true"
653654 class = { [
654655 'v-combobox__selection' ,
655656 index === selectionIndex . value && [
Original file line number Diff line number Diff line change @@ -575,7 +575,7 @@ export const VSelect = genericComponent<new <
575575 if ( hasSlot && ! slotContent ) return undefined
576576
577577 return (
578- < div key = { item . value } class = "v-select__selection" >
578+ < div key = { item . value } class = "v-select__selection" aria-hidden = "true" >
579579 { hasChips ? (
580580 ! slots . chip ? (
581581 < VChip
You can’t perform that action at this time.
0 commit comments