mirror of
https://github.com/element-hq/element-web
synced 2024-11-28 04:21:57 +03:00
Only hide sender when in bubble mode
This commit is contained in:
parent
a6120ef3b7
commit
dde58d449d
1 changed files with 1 additions and 1 deletions
|
@ -712,7 +712,7 @@ export default class MessagePanel extends React.Component<IProps, IState> {
|
|||
layout={this.props.layout}
|
||||
enableFlair={this.props.enableFlair}
|
||||
showReadReceipts={this.props.showReadReceipts}
|
||||
hideSender={this.props.room.getMembers().length <= 2}
|
||||
hideSender={this.props.room.getMembers().length <= 2 && this.props.layout === Layout.Bubble}
|
||||
/>
|
||||
</TileErrorBoundary>,
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue