mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 21:24:59 +08:00
Fix 'unread messages' in status
This got broken in the previous commit
This commit is contained in:
parent
194110dd71
commit
7fd56351a9
@ -136,7 +136,7 @@ module.exports = React.createClass({
|
||||
|
||||
// unread count trumps who is typing since the unread count is only
|
||||
// set when you've scrolled up
|
||||
if (this.props.numUnreadMsgs) {
|
||||
if (this.props.numUnreadMessages) {
|
||||
var unreadMsgs = this.props.numUnreadMessages + " new message" +
|
||||
(this.props.numUnreadMessages > 1 ? "s" : "");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user