Skip to content

Commit

Permalink
fix(VSelect): add option role to VListItem elements (#18629)
Browse files Browse the repository at this point in the history
fixes #17767
fixes #16881
  • Loading branch information
Tboodle authored Nov 21, 2023
1 parent a0e7e53 commit 82e596e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/components/VSelect/VSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ export const VSelect = genericComponent<new <
index,
props: itemProps,
}) ?? (
<VListItem { ...itemProps }>
<VListItem { ...itemProps } role="option">
{{
prepend: ({ isSelected }) => (
<>
Expand Down

0 comments on commit 82e596e

Please sign in to comment.