diff --git a/src/components/structures/MatrixChat.js b/src/components/structures/MatrixChat.js index d0a5aa42c4..613d310da9 100644 --- a/src/components/structures/MatrixChat.js +++ b/src/components/structures/MatrixChat.js @@ -572,7 +572,7 @@ export default React.createClass({ this._viewIndexedRoom(payload.roomIndex); break; case 'view_user_settings': { - if (SettingsStore.isFeatureEnabled("feature_tabbed_settings")) { + if (true || SettingsStore.isFeatureEnabled("feature_tabbed_settings")) { const UserSettingsDialog = sdk.getComponent("dialogs.UserSettingsDialog"); Modal.createTrackedDialog('User settings', '', UserSettingsDialog, {}, 'mx_SettingsDialog'); } else { diff --git a/src/components/views/dialogs/RoomSettingsDialog.js b/src/components/views/dialogs/RoomSettingsDialog.js index 0578ccaffd..9718d29bbc 100644 --- a/src/components/views/dialogs/RoomSettingsDialog.js +++ b/src/components/views/dialogs/RoomSettingsDialog.js @@ -83,11 +83,11 @@ export default class RoomSettingsDialog extends React.Component { "mx_RoomSettingsDialog_warningIcon", , )); - tabs.push(new Tab( - _td("Visit old settings"), - "mx_RoomSettingsDialog_warningIcon", - , - )); + // tabs.push(new Tab( + // _td("Visit old settings"), + // "mx_RoomSettingsDialog_warningIcon", + // , + // )); return tabs; } diff --git a/src/components/views/dialogs/UserSettingsDialog.js b/src/components/views/dialogs/UserSettingsDialog.js index 2616542bf7..d241be7660 100644 --- a/src/components/views/dialogs/UserSettingsDialog.js +++ b/src/components/views/dialogs/UserSettingsDialog.js @@ -96,11 +96,11 @@ export default class UserSettingsDialog extends React.Component { "mx_UserSettingsDialog_helpIcon", , )); - tabs.push(new Tab( - _td("Visit old settings"), - "mx_UserSettingsDialog_helpIcon", - , - )); + // tabs.push(new Tab( + // _td("Visit old settings"), + // "mx_UserSettingsDialog_helpIcon", + // , + // )); return tabs; } diff --git a/src/stores/RoomViewStore.js b/src/stores/RoomViewStore.js index ba78e7687f..db49de805b 100644 --- a/src/stores/RoomViewStore.js +++ b/src/stores/RoomViewStore.js @@ -120,7 +120,7 @@ class RoomViewStore extends Store { }); break; case 'open_room_settings': - if (SettingsStore.isFeatureEnabled("feature_tabbed_settings")) { + if (true || SettingsStore.isFeatureEnabled("feature_tabbed_settings")) { const RoomSettingsDialog = sdk.getComponent("dialogs.RoomSettingsDialog"); Modal.createTrackedDialog('Room settings', '', RoomSettingsDialog, { roomId: this._state.roomId,