Skip to content

Commit

Permalink
fix(VAutocomplete/VCombobox): prevent focus on menu icon
Browse files Browse the repository at this point in the history
  • Loading branch information
KaelWD committed May 21, 2024
1 parent 17a0561 commit 4b387b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -638,6 +638,7 @@ export const VAutocomplete = genericComponent<new <
onClick={ noop }
aria-label={ t(label.value) }
title={ t(label.value) }
tabindex="-1"
/>
) : undefined }
</>
Expand Down
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 @@ -684,6 +684,7 @@ export const VCombobox = genericComponent<new <
onClick={ noop }
aria-label={ t(label.value) }
title={ t(label.value) }
tabindex="-1"
/>
) : undefined }
</>
Expand Down

0 comments on commit 4b387b5

Please sign in to comment.