mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-18 06:27:19 +08:00
Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
commit
efc906dd0f
@ -36,13 +36,21 @@ export default {
|
|||||||
getLabsFeatures() {
|
getLabsFeatures() {
|
||||||
const featuresConfig = SdkConfig.get()['features'] || {};
|
const featuresConfig = SdkConfig.get()['features'] || {};
|
||||||
|
|
||||||
return FEATURES.filter((f) => {
|
// The old flag: honourned for backwards compat
|
||||||
const sdkConfigValue = featuresConfig[f.id];
|
const enableLabs = SdkConfig.get()['enableLabs'];
|
||||||
|
|
||||||
if (sdkConfigValue === 'labs') {
|
let labsFeatures;
|
||||||
return true;
|
if (enableLabs) {
|
||||||
}
|
labsFeatures = FEATURES;
|
||||||
}).map((f) => {
|
} else {
|
||||||
|
labsFeatures.filter((f) => {
|
||||||
|
const sdkConfigValue = featuresConfig[f.id];
|
||||||
|
if (sdkConfigValue === 'labs') {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return labsFeatures.map((f) => {
|
||||||
return f.id;
|
return f.id;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user