mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 21:24:59 +08:00
Improve addEventsToTimeline performance scoping WhoIsTypingTile::setState
This commit is contained in:
parent
1751b4ba43
commit
88af74e4a4
@ -87,7 +87,9 @@ export default class WhoIsTypingTile extends React.Component {
|
||||
const userId = event.getSender();
|
||||
// remove user from usersTyping
|
||||
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
|
||||
this._abortUserTimer(userId);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user