mirror of https://github.com/vector-im/riot-web
only detach if created before
parent
ff383b4aa0
commit
1948e9bc17
|
@ -55,8 +55,10 @@ export default class MainSplit extends React.Component {
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillUnmount() {
|
componentWillUnmount() {
|
||||||
this.resizer.detach();
|
if (this.resizer) {
|
||||||
this.resizer = null;
|
this.resizer.detach();
|
||||||
|
this.resizer = null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidUpdate(prevProps) {
|
componentDidUpdate(prevProps) {
|
||||||
|
|
Loading…
Reference in New Issue