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
commit c66a277409
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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}
/>; />;
} }