mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-09 14:16:22 +02:00
Fix suggested rooms not showing up regression from room list optimisation
This commit is contained in:
parent
31b9a4c312
commit
35799c213e
@ -763,7 +763,9 @@ export default class RoomSublist extends React.Component<IProps, IState> {
|
||||
'mx_RoomSublist': true,
|
||||
'mx_RoomSublist_hasMenuOpen': !!this.state.contextMenuPosition,
|
||||
'mx_RoomSublist_minimized': this.props.isMinimized,
|
||||
'mx_RoomSublist_hidden': !this.state.rooms.length && this.props.alwaysVisible !== true,
|
||||
'mx_RoomSublist_hidden': (
|
||||
!this.state.rooms.length && !this.props.extraTiles?.length && this.props.alwaysVisible !== true
|
||||
),
|
||||
});
|
||||
|
||||
let content = null;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user