This commit is contained in:
Mirco Wittrien 2020-04-29 19:21:28 +02:00
parent ff2cf08cbe
commit f8bc0ece12
2 changed files with 2 additions and 2 deletions

View File

@ -7502,7 +7502,7 @@
componentDidMount() {
let basepopout = BDFDB.ReactUtils.findOwner(this, {name:"BasePopout"});
if (!basepopout || !basepopout.handleClick) return;
this.handleClick = basepopout.handleClick;
this.handleClick = e => {return basepopout.handleClick(BDFDB.ObjectUtils.is(e) ? e : (new MouseEvent({})));};
this.close = basepopout.close;
this.domElementRef = basepopout.domElementRef;
}

File diff suppressed because one or more lines are too long