mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 17:56:01 +03:00
Add null guard for room prop in EventTile
This commit is contained in:
parent
5a7fe60d0e
commit
ae51653348
1 changed files with 1 additions and 1 deletions
|
@ -743,7 +743,7 @@ export default class MessagePanel extends React.Component<IProps, IState> {
|
|||
enableFlair={this.props.enableFlair}
|
||||
showReadReceipts={this.props.showReadReceipts}
|
||||
callEventGrouper={callEventGrouper}
|
||||
hideSender={this.props.room.getMembers().length <= 2 && this.props.layout === Layout.Bubble}
|
||||
hideSender={this.props.room?.getMembers().length <= 2 && this.props.layout === Layout.Bubble}
|
||||
/>
|
||||
</TileErrorBoundary>,
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue