1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-20 16:22:28 +03:00

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
This commit is contained in:
Travis Ralston
2019-05-20 15:37:56 -06:00
committed by GitHub

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}