Setting correct initial state

pull/2235/head
wmwragg 2016-09-15 17:31:15 +01:00
parent 5282796d84
commit 37fc73b1ea
1 changed files with 1 additions and 2 deletions

View File

@ -85,8 +85,7 @@ var RoomSubList = React.createClass({
getInitialState: function() {
return {
hidden: this.props.startAsHidden || false,
capTruncate: this.props.list.length > TRUNCATE_AT,
truncateAt: this.props.list.length > TRUNCATE_AT ? TRUNCATE_AT : -1,
truncateAt: TRUNCATE_AT,
sortedList: [],
};
},