Hack around a react warning
when login completes, we replace the whole state, which means we unset collapse_lhs, which then leads to complaints from the RoomList. I think the 'default view' for MatrixChat ought to be factored out to another component, which could manage collapse_lhs properly; but for now, hack around it.
This commit is contained in:
parent
0351ab0a3d
commit
a1d3db76e5
2 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,7 @@ module.exports = React.createClass({
|
|||
|
||||
propTypes: {
|
||||
ConferenceHandler: React.PropTypes.any,
|
||||
collapsed: React.PropTypes.bool,
|
||||
collapsed: React.PropTypes.bool.isRequired,
|
||||
currentRoom: React.PropTypes.string,
|
||||
searchFilter: React.PropTypes.string,
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue