Appease the linter
This commit is contained in:
parent
d7a43df793
commit
ae04c5ce9d
2 changed files with 5 additions and 2 deletions
|
@ -111,7 +111,10 @@ export interface ISetting {
|
|||
export const SETTINGS: {[setting: string]: ISetting} = {
|
||||
"feature_communities_v2_prototypes": {
|
||||
isFeature: true,
|
||||
displayName: _td("Communities v2 prototypes. Requires compatible homeserver. Highly experimental - use with caution."),
|
||||
displayName: _td(
|
||||
"Communities v2 prototypes. Requires compatible homeserver. " +
|
||||
"Highly experimental - use with caution.",
|
||||
),
|
||||
supportedLevels: LEVELS_FEATURE,
|
||||
default: false,
|
||||
},
|
||||
|
|
|
@ -115,7 +115,7 @@ class TagOrderStore extends Store {
|
|||
break;
|
||||
}
|
||||
case 'select_tag': {
|
||||
const allowMultiple = !SettingsStore.getValue("feature_communities_v2_prototypes")
|
||||
const allowMultiple = !SettingsStore.getValue("feature_communities_v2_prototypes");
|
||||
|
||||
let newTags = [];
|
||||
// Shift-click semantics
|
||||
|
|
Loading…
Reference in a new issue