We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 259d38c commit 15d7daeCopy full SHA for 15d7dae
packages/vuetify/src/components/VAutocomplete/VAutocomplete.ts
@@ -410,14 +410,18 @@ export default VSelect.extend({
410
})
411
},
412
updateSelf () {
413
- if (!this.searchIsDirty &&
+ if (
414
+ !this.searchIsDirty &&
415
!this.internalValue
416
) return
417
- if (!this.valueComparator(
418
- this.internalSearch,
419
- this.getValue(this.internalValue)
420
- )) {
+ !this.multiple &&
+ !this.valueComparator(
421
+ this.internalSearch,
422
+ this.getValue(this.internalValue)
423
+ )
424
+ ) {
425
this.setSearch()
426
}
427
0 commit comments