This commit is contained in:
morsh 2017-08-13 17:15:27 +03:00
Родитель 8f01541d80
Коммит c28c559401
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -63,6 +63,10 @@ export default class Dialog extends React.PureComponent<IDialogProps, IDialogSta
DialogsStore.listen(this.onChange);
}
componentWillUnmount() {
DialogsStore.unlisten(this.onChange);
}
componentDidUpdate() {
const { dialogData } = this.props;
var { dialogId, dialogArgs } = this.state;