mirror of
https://github.com/element-hq/element-web
synced 2024-11-26 19:26:04 +03:00
Hide non-functional list options on Suggested sublist (#7410)
This commit is contained in:
parent
097c40b577
commit
5096455f64
1 changed files with 2 additions and 0 deletions
|
@ -553,6 +553,8 @@ export default class RoomSublist extends React.Component<IProps, IState> {
|
|||
}
|
||||
|
||||
private renderMenu(): React.ReactElement {
|
||||
if (this.props.tagId === DefaultTagID.Suggested) return null; // not sortable
|
||||
|
||||
let contextMenu = null;
|
||||
if (this.state.contextMenuPosition) {
|
||||
const isAlphabetical = RoomListStore.instance.getTagSorting(this.props.tagId) === SortAlgorithm.Alphabetic;
|
||||
|
|
Loading…
Reference in a new issue