1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-05 23:10:41 +03:00

Merge pull request #5749 from matrix-org/t3chguy/spaces4.6

Properly gate SpaceRoomView behind labs
This commit is contained in:
Michael Telatynski
2021-03-11 11:17:36 +00:00
committed by GitHub

View File

@@ -1911,7 +1911,7 @@ export default class RoomView extends React.Component<IProps, IState> {
);
}
if (this.state.room?.isSpaceRoom()) {
if (SettingsStore.getValue("feature_spaces") && this.state.room?.isSpaceRoom()) {
return <SpaceRoomView
space={this.state.room}
justCreatedOpts={this.props.justCreatedOpts}