Fixed overlay visibility issue when showOnFocus
parent
65275ff32a
commit
c86fb52f1f
|
@ -2642,7 +2642,7 @@ export default {
|
||||||
this.$emit('input', event);
|
this.$emit('input', event);
|
||||||
},
|
},
|
||||||
onInputClick() {
|
onInputClick() {
|
||||||
if (this.isEnabled() && !this.overlayVisible) {
|
if (this.showOnFocus && this.isEnabled() && !this.overlayVisible) {
|
||||||
this.overlayVisible = true;
|
this.overlayVisible = true;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue