mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 18:25:49 +03:00
call onWidgetLoad on componentDidUpdate
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
fdf63fd440
commit
ca766df598
1 changed files with 7 additions and 3 deletions
|
@ -65,6 +65,10 @@ export default class ReplyThread extends React.Component {
|
|||
this.initialize();
|
||||
}
|
||||
|
||||
componentDidUpdate() {
|
||||
this.props.onWidgetLoad();
|
||||
}
|
||||
|
||||
componentWillUnmount() {
|
||||
this.unmounted = true;
|
||||
}
|
||||
|
@ -105,7 +109,7 @@ export default class ReplyThread extends React.Component {
|
|||
if (!inReplyTo) {
|
||||
this.setState({
|
||||
loading: false,
|
||||
}, this.props.onWidgetLoad);
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -113,9 +117,9 @@ export default class ReplyThread extends React.Component {
|
|||
if (this.unmounted) return;
|
||||
|
||||
if (loadedEv) {
|
||||
this.setState({loadedEv}, this.props.onWidgetLoad);
|
||||
this.setState({loadedEv});
|
||||
} else {
|
||||
this.setState({err: true}, this.props.onWidgetLoad);
|
||||
this.setState({err: true});
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue