Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit bf2a47b

Browse files
authored
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
2 parents 7979934 + 868c99d commit bf2a47b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/structures/MessagePanel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@ module.exports = React.createClass({
716716
);
717717

718718
let whoIsTyping;
719-
if (this.props.room) {
719+
if (this.props.room && !this.props.tileShape) {
720720
whoIsTyping = (<WhoIsTypingTile
721721
room={this.props.room}
722722
onShown={this._onTypingShown}

0 commit comments

Comments
 (0)