1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-14 19:02:33 +03:00

Merge pull request #4679 from JorikSchellekens/joriks/fix-irc-resize-save

Pass roomId to IRCTimelineProfileResizer
This commit is contained in:
Jorik Schellekens
2020-06-01 22:00:51 +01:00
committed by GitHub

View File

@@ -803,7 +803,7 @@ export default class MessagePanel extends React.Component {
ircResizer = <IRCTimelineProfileResizer ircResizer = <IRCTimelineProfileResizer
minWidth={20} minWidth={20}
maxWidth={600} maxWidth={600}
roomId={this.props.room ? this.props.roomroomId : null} roomId={this.props.room ? this.props.room.roomId : null}
/>; />;
} }