Add setting to disable TagPanel
parent
1ac62a17ff
commit
27c71f15b9
|
@ -79,6 +79,7 @@ const SIMPLE_SETTINGS = [
|
||||||
{ id: "Pill.shouldHidePillAvatar" },
|
{ id: "Pill.shouldHidePillAvatar" },
|
||||||
{ id: "TextualBody.disableBigEmoji" },
|
{ id: "TextualBody.disableBigEmoji" },
|
||||||
{ id: "VideoView.flipVideoHorizontally" },
|
{ id: "VideoView.flipVideoHorizontally" },
|
||||||
|
{ id: "TagPanel.disableTagPanel" },
|
||||||
];
|
];
|
||||||
|
|
||||||
// These settings must be defined in SettingsStore
|
// These settings must be defined in SettingsStore
|
||||||
|
|
|
@ -188,6 +188,11 @@ export const SETTINGS = {
|
||||||
displayName: _td('Mirror local video feed'),
|
displayName: _td('Mirror local video feed'),
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
|
"TagPanel.disableTagPanel": {
|
||||||
|
supportedLevels: LEVELS_ACCOUNT_SETTINGS,
|
||||||
|
displayName: _td('Disable Community Filter Panel'),
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
"theme": {
|
"theme": {
|
||||||
supportedLevels: LEVELS_ACCOUNT_SETTINGS,
|
supportedLevels: LEVELS_ACCOUNT_SETTINGS,
|
||||||
default: "light",
|
default: "light",
|
||||||
|
|
Loading…
Reference in New Issue