Fixed - Togglable state for dropdown on Autocomplete
parent
18455ed9f8
commit
252d147eb5
|
@ -445,13 +445,20 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onDropdownClick(event) {
|
onDropdownClick(event) {
|
||||||
this.$refs.focusInput.focus();
|
let query = undefined;
|
||||||
const query = this.$refs.focusInput.value;
|
|
||||||
|
|
||||||
if (this.dropdownMode === 'blank')
|
if (this.overlayVisible) {
|
||||||
this.search(event, '', 'dropdown');
|
this.hide(true);
|
||||||
else if (this.dropdownMode === 'current')
|
}
|
||||||
this.search(event, query, 'dropdown');
|
else {
|
||||||
|
this.$refs.focusInput.focus();
|
||||||
|
query = this.$refs.focusInput.value;
|
||||||
|
|
||||||
|
if (this.dropdownMode === 'blank')
|
||||||
|
this.search(event, '', 'dropdown');
|
||||||
|
else if (this.dropdownMode === 'current')
|
||||||
|
this.search(event, query, 'dropdown');
|
||||||
|
}
|
||||||
|
|
||||||
this.$emit('dropdown-click', { originalEvent: event, query });
|
this.$emit('dropdown-click', { originalEvent: event, query });
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue