Skip to content

Commit

Permalink
fix(VSelectList): correct mask class
Browse files Browse the repository at this point in the history
  • Loading branch information
KaelWD committed Sep 12, 2022
1 parent f50a808 commit cd193e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/components/VSelect/VSelectList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export default mixins(Colorable, Themeable).extend({
return this.$createElement(VSubheader, { props }, props.header)
},
genHighlight (text: string) {
return this.$createElement('span', { staticClass: 'v-list__tile__mask' }, text)
return this.$createElement('span', { staticClass: 'v-list-item__mask' }, text)
},
getMaskedCharacters (text: string): {
start: string
Expand Down

0 comments on commit cd193e4

Please sign in to comment.