Skip to content

Commit

Permalink
fix(VMenu): replace aria-owns with aria-controls (#20596)
Browse files Browse the repository at this point in the history
Co-authored-by: Viktor Kratz <[email protected]>
  • Loading branch information
viktorkratz and Viktor Kratz authored Jan 24, 2025
1 parent 3ef363a commit 0fe248a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/components/VMenu/VMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ export const VMenu = genericComponent<OverlaySlots>()({
mergeProps({
'aria-haspopup': 'menu',
'aria-expanded': String(isActive.value),
'aria-owns': id.value,
'aria-controls': id.value,
onKeydown: onActivatorKeydown,
}, props.activatorProps)
)
Expand Down

0 comments on commit 0fe248a

Please sign in to comment.