Fixed overlay visibility issue when showOnFocus

pull/3938/head
Olgu Örs Başak 2023-05-09 16:51:50 +03:00
parent 65275ff32a
commit c86fb52f1f
1 changed files with 1 additions and 1 deletions

View File

@ -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;
} }
}, },