diff --git a/src/components/structures/RoomSubList.js b/src/components/structures/RoomSubList.js index fb4d897ed0..0fe45f4706 100644 --- a/src/components/structures/RoomSubList.js +++ b/src/components/structures/RoomSubList.js @@ -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: [], }; },