Improve addEventsToTimeline performance scoping WhoIsTypingTile::setState
This commit is contained in:
parent
1751b4ba43
commit
88af74e4a4
1 changed files with 3 additions and 1 deletions
|
@ -87,7 +87,9 @@ export default class WhoIsTypingTile extends React.Component {
|
||||||
const userId = event.getSender();
|
const userId = event.getSender();
|
||||||
// remove user from usersTyping
|
// remove user from usersTyping
|
||||||
const usersTyping = this.state.usersTyping.filter((m) => m.userId !== userId);
|
const usersTyping = this.state.usersTyping.filter((m) => m.userId !== userId);
|
||||||
this.setState({usersTyping});
|
if (usersTyping.length !== this.state.usersTyping.length) {
|
||||||
|
this.setState({usersTyping});
|
||||||
|
}
|
||||||
// abort timer if any
|
// abort timer if any
|
||||||
this._abortUserTimer(userId);
|
this._abortUserTimer(userId);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue