Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(VMenu): make activation by arrow keys optional #20091

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
feat(V-Menu): make activation by arrow keys optional
  • Loading branch information
fostdvelop committed Jul 3, 2024
commit 057e30921630945b314aeeea12d0dc04f3b20de8
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 @@ -45,7 +45,7 @@ export const makeVMenuProps = propsFactory({
scrim: false,
scrollStrategy: 'reposition' as const,
transition: { component: VDialogTransition as Component },
disableArrowKeysActivation: false
disableArrowKeysActivation: false,
}), ['absolute']),
}, 'VMenu')

Expand Down
Loading