always show badges in room sub list header

pull/21833/head
Bruno Windels 2018-11-05 10:35:50 +01:00
parent 010f077092
commit 6993dc034d
1 changed files with 11 additions and 13 deletions

View File

@ -266,19 +266,17 @@ const RoomSubList = React.createClass({
let badge; let badge;
if (this.state.hidden) { const badgeClasses = classNames({
const badgeClasses = classNames({ 'mx_RoomSubList_badge': true,
'mx_RoomSubList_badge': true, 'mx_RoomSubList_badgeHighlight': subListNotifHighlight,
'mx_RoomSubList_badgeHighlight': subListNotifHighlight, });
}); if (subListNotifCount > 0) {
if (subListNotifCount > 0) { badge = <div className={badgeClasses} onClick={this._onNotifBadgeClick}>
badge = <div className={badgeClasses} onClick={this._onNotifBadgeClick}> { FormattingUtils.formatCount(subListNotifCount) }
{ FormattingUtils.formatCount(subListNotifCount) } </div>;
</div>; } else if (this.props.isInvite) {
} else if (this.props.isInvite) { // no notifications but highlight anyway because this is an invite badge
// no notifications but highlight anyway because this is an invite badge badge = <div className={badgeClasses} onClick={this._onInviteBadgeClick}>!</div>;
badge = <div className={badgeClasses} onClick={this._onInviteBadgeClick}>!</div>;
}
} }
// When collapsed, allow a long hover on the header to show user // When collapsed, allow a long hover on the header to show user