mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 03:36:07 +03:00
Removed logs, updated phrasing on 'others joined'
Now it's: 1 user joined and left >1 others joined and left
This commit is contained in:
parent
5f0b891d47
commit
f5bc8d1fe0
1 changed files with 3 additions and 3 deletions
|
@ -185,8 +185,6 @@ module.exports = React.createClass({
|
|||
});
|
||||
|
||||
let fewEvents = eventsToRender.length < this.props.threshold;
|
||||
console.log(eventsToRender.length, joinEvents.length, leaveEvents.length, this.state.expanded, fewEvents);
|
||||
|
||||
let expanded = this.state.expanded || fewEvents;
|
||||
let expandedEvents = null;
|
||||
|
||||
|
@ -204,6 +202,8 @@ module.exports = React.createClass({
|
|||
<a onClick={this.toggleSummary} href="javascript:;">{expanded?'collapse':'expand'}</a>
|
||||
);
|
||||
|
||||
let noun = (joinAndLeft === 1 ? 'user' : 'others');
|
||||
|
||||
summaryContainer = (
|
||||
<div className="mx_EventTile_line">
|
||||
<div className="mx_EventTile_info">
|
||||
|
@ -211,7 +211,7 @@ module.exports = React.createClass({
|
|||
{avatars}
|
||||
</span>
|
||||
<span className="mx_TextualEvent mx_MemberEventListSummary_summary">
|
||||
{summary}{joinAndLeft? '. ' + joinAndLeft + ' others joined and left' : ''}
|
||||
{summary}{joinAndLeft? '. ' + joinAndLeft + ' ' + noun + ' joined and left' : ''}
|
||||
</span>
|
||||
{toggleButton}
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue