Fixed #2871 - OverlayPanel: Doesn't work in SSR

pull/2888/head
Tuğçe Küçükoğlu 2022-08-23 10:01:42 +03:00
parent 2196716fe8
commit aafa0ca3a1
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ export default {
}
},
bindOutsideClickListener() {
if (!this.outsideClickListener) {
if (!this.outsideClickListener && DomHandler.isClient()) {
this.outsideClickListener = (event) => {
if (this.visible && !this.selfClick && !this.isTargetClicked(event)) {
this.visible = false;