mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
oops, reset truncate state on hide, not collapse
This commit is contained in:
parent
302c63058b
commit
0a32874b39
@ -99,15 +99,18 @@ var RoomSubList = React.createClass({
|
||||
// order the room list appropriately before we re-render
|
||||
//if (debug) console.log("received new props, list = " + newProps.list);
|
||||
this.sortList(newProps.list, newProps.order);
|
||||
|
||||
if (newProps.collapsed) { // as good a way as any to reset the truncate state
|
||||
this.setState({ truncateAt : 20 });
|
||||
}
|
||||
},
|
||||
|
||||
onClick: function(ev) {
|
||||
var isHidden = !this.state.hidden;
|
||||
this.setState({ hidden : isHidden });
|
||||
|
||||
if (isHidden) {
|
||||
// as good a way as any to reset the truncate state
|
||||
this.setState({ truncateAt : 20 });
|
||||
this.props.onShowMoreRooms();
|
||||
}
|
||||
|
||||
this.props.onHeaderClick(isHidden);
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user