forgot .length somehow
Co-Authored-By: bwindels <bruno@windels.cloud>
This commit is contained in:
parent
86357fde51
commit
881353037e
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ module.exports = React.createClass({
|
||||||
},
|
},
|
||||||
|
|
||||||
isVisible: function() {
|
isVisible: function() {
|
||||||
return this.state.usersTyping.length !== 0 || Object.keys(this.state.delayedStopTypingTimers) !== 0;
|
return this.state.usersTyping.length !== 0 || Object.keys(this.state.delayedStopTypingTimers).length !== 0;
|
||||||
},
|
},
|
||||||
|
|
||||||
onRoomTimeline: function(event, room) {
|
onRoomTimeline: function(event, room) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue