Review comments

pull/21833/head
Kegan Dougal 2017-01-13 15:17:34 +00:00
parent e196cfaf91
commit dcd0acb2b5
1 changed files with 2 additions and 2 deletions

View File

@ -376,7 +376,7 @@ module.exports = WithMatrixClient(React.createClass({
// get out of sync if we force setState here!
console.log("Power change success");
}, function(err) {
var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
Modal.createDialog(ErrorDialog, {
title: "Failure to change power level",
description: err.message
@ -384,7 +384,7 @@ module.exports = WithMatrixClient(React.createClass({
}
).finally(()=>{
this.setState({ updating: this.state.updating - 1 });
});
}).done();
this.props.onFinished();
},