Skip to content

Commit

Permalink
fix(VSelect): don't select dividers or headers on arrow press
Browse files Browse the repository at this point in the history
  • Loading branch information
KaelWD committed Nov 9, 2021
1 parent 6e3d83f commit 13f08b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/components/VMenu/VMenu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ export default baseMixins.extend({
getTiles () {
if (!this.$refs.content) return

this.tiles = Array.from(this.$refs.content.querySelectorAll('.v-list-item'))
this.tiles = Array.from(this.$refs.content.querySelectorAll('.v-list-item, .v-divider, .v-subheader'))
},
mouseEnterHandler () {
this.runDelay('open', () => {
Expand Down

0 comments on commit 13f08b6

Please sign in to comment.