Add setting to hide bold notifications (#9705)
This commit is contained in:
parent
474f464e48
commit
3a501003e2
12 changed files with 65 additions and 13 deletions
|
@ -556,11 +556,18 @@ export const SETTINGS: {[setting: string]: ISetting} = {
|
|||
supportedLevels: LEVELS_ROOM_OR_ACCOUNT,
|
||||
default: false,
|
||||
},
|
||||
"feature_hidebold": {
|
||||
isFeature: true,
|
||||
supportedLevels: LEVELS_DEVICE_ONLY_SETTINGS_WITH_CONFIG,
|
||||
displayName: _td("Hide notification dot (only display counters badges)"),
|
||||
labsGroup: LabGroup.Rooms,
|
||||
default: false,
|
||||
},
|
||||
"useCompactLayout": {
|
||||
supportedLevels: LEVELS_DEVICE_ONLY_SETTINGS,
|
||||
displayName: _td("Use a more compact 'Modern' layout"),
|
||||
default: false,
|
||||
controller: new IncompatibleController("layout", false, v => v !== Layout.Group),
|
||||
controller: new IncompatibleController("layout", false, (v: Layout) => v !== Layout.Group),
|
||||
},
|
||||
"showRedactions": {
|
||||
supportedLevels: LEVELS_ROOM_SETTINGS_WITH_ROOM,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue