Commit 95445e20 authored by dennyak47's avatar dennyak47 Committed by GitHub

Select: fix click icon triggering dropdown (#21314)

parent 50a464ea
......@@ -565,10 +565,10 @@
handleFocus(event) {
if (!this.softFocus) {
if (this.automaticDropdown || this.filterable) {
this.visible = true;
if (this.filterable) {
if (this.filterable && !this.visible) {
this.menuVisibleOnFocus = true;
}
this.visible = true;
}
this.$emit('focus', event);
} else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment