remove numbers

This commit is contained in:
Matthew Hodgson 2018-05-25 16:30:38 +01:00
parent 715632ff9c
commit 7fe2bfc212

View file

@ -297,13 +297,13 @@ var RoomSubList = React.createClass({
<div className="mx_RoomSubList_labelContainer" title={ title } ref="header"> <div className="mx_RoomSubList_labelContainer" title={ title } ref="header">
<AccessibleButton onClick={ this.onClick } className="mx_RoomSubList_label" tabIndex={tabindex}> <AccessibleButton onClick={ this.onClick } className="mx_RoomSubList_label" tabIndex={tabindex}>
{ this.props.collapsed ? '' : this.props.label } { this.props.collapsed ? '' : this.props.label }
<div className="mx_RoomSubList_roomCount">{ roomCount }</div>
<div className={chevronClasses}></div> <div className={chevronClasses}></div>
{ badge } { badge }
{ incomingCall } { incomingCall }
</AccessibleButton> </AccessibleButton>
</div> </div>
); );
// <div className="mx_RoomSubList_roomCount">{ roomCount }</div>
}, },
_createOverflowTile: function(overflowCount, totalCount) { _createOverflowTile: function(overflowCount, totalCount) {