Fix a pair of warnings from RoomSettings

- initialise the 'publish' checkbox correctly so react doesn't grumble about it
  turning from uncontrolled into controlled

- PowerSelector's 'controlled' property isn't really required, so mark it as
  such.
This commit is contained in:
Richard van der Hoff 2016-06-23 11:15:55 +01:00
parent e741226c02
commit 7a7d7c0e02
2 changed files with 7 additions and 2 deletions

View file

@ -64,7 +64,7 @@ module.exports = React.createClass({
tags_changed: false,
tags: tags,
areNotifsMuted: areNotifsMuted,
isRoomPublished: this._originalIsRoomPublished, // loaded async in componentWillMount
isRoomPublished: false, // loaded async in componentWillMount
};
},