Merge pull request #3938 from primefaces/issue-3923

Calendar: Fixed overlay visibility issue when showOnFocus
pull/3958/head
Tuğçe Küçükoğlu 2023-05-11 15:08:32 +03:00 committed by GitHub
commit 8cea4d8c2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2642,7 +2642,7 @@ export default {
this.$emit('input', event);
},
onInputClick() {
if (this.isEnabled() && !this.overlayVisible) {
if (this.showOnFocus && this.isEnabled() && !this.overlayVisible) {
this.overlayVisible = true;
}
},