Fix combination of multiple and dropdown

pull/6029/head
Marlon Santana 2024-07-08 11:58:16 -03:00
parent 2d05803e6b
commit e8a80ff576
1 changed files with 4 additions and 2 deletions

View File

@ -511,8 +511,10 @@ export default {
if (this.overlayVisible) {
this.hide(true);
} else {
focus(this.multiple ? this.$refs.focusInput : this.$refs.focusInput.$el);
query = this.$refs.focusInput.$el.value;
let target = this.multiple ? this.$refs.focusInput : this.$refs.focusInput.$el;
focus(target);
query = target.value;
if (this.dropdownMode === 'blank') this.search(event, '', 'dropdown');
else if (this.dropdownMode === 'current') this.search(event, query, 'dropdown');