mirror of
https://github.com/element-hq/element-web
synced 2024-11-29 12:58:53 +03:00
Highlight status is now the room's unread notif count
This commit is contained in:
parent
59f419b310
commit
cb1fabc578
1 changed files with 1 additions and 1 deletions
|
@ -255,7 +255,7 @@ var RoomSubList = React.createClass({
|
|||
collapsed={ self.props.collapsed || false}
|
||||
selected={ selected }
|
||||
unread={ self.props.activityMap[room.roomId] === 1 }
|
||||
highlight={ self.props.activityMap[room.roomId] === 2 }
|
||||
highlight={ room.unread_notification_count > 0 || self.props.label === 'Invites' }
|
||||
isInvite={ self.props.label === 'Invites' }
|
||||
incomingCall={ self.props.incomingCall && (self.props.incomingCall.roomId === room.roomId) ? self.props.incomingCall : null }
|
||||
/>
|
||||
|
|
Loading…
Reference in a new issue