Fixes HMR when used as a global decorator

This commit is contained in:
Alexander Ryzhikov 2016-09-10 23:48:09 +03:00 committed by Norbert de Langen
parent 20b74fbc38
commit 09162b5b77

View File

@ -41,6 +41,10 @@ export class BackgroundDecorator extends React.Component<any, any> {
this.channel.emit("background-set", this.props.backgrounds);
}
componentWillReceiveProps(nextProps) {
this.story = nextProps.story();
}
componentWillUnmount() {
this.channel.removeListener("background", this.setBackground);
this.channel.emit("background-unset");