Merge pull request #3000 from matrix-org/t3chguy/hide_file_panel_typing_notifs

Hide WhoIsTyping component if the MessagePanel is shaped e.g file grid
pull/21833/head
Travis Ralston 2019-05-20 15:37:56 -06:00 committed by GitHub
commit bf2a47b4d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -716,7 +716,7 @@ module.exports = React.createClass({
);
let whoIsTyping;
if (this.props.room) {
if (this.props.room && !this.props.tileShape) {
whoIsTyping = (<WhoIsTypingTile
room={this.props.room}
onShown={this._onTypingShown}