Fix the enableLabs flag, again
We were showing the options but ignoring them
This commit is contained in:
parent
5214a867db
commit
d0759a537b
1 changed files with 4 additions and 1 deletions
|
@ -202,7 +202,10 @@ export default {
|
||||||
isFeatureEnabled: function(featureId: string): boolean {
|
isFeatureEnabled: function(featureId: string): boolean {
|
||||||
const featuresConfig = SdkConfig.get()['features'];
|
const featuresConfig = SdkConfig.get()['features'];
|
||||||
|
|
||||||
let sdkConfigValue = 'disable';
|
// The old flag: honourned for backwards compat
|
||||||
|
const enableLabs = SdkConfig.get()['enableLabs'];
|
||||||
|
|
||||||
|
let sdkConfigValue = enableLabs ? 'labs' : 'disable';
|
||||||
if (featuresConfig && featuresConfig[featureId] !== undefined) {
|
if (featuresConfig && featuresConfig[featureId] !== undefined) {
|
||||||
sdkConfigValue = featuresConfig[featureId];
|
sdkConfigValue = featuresConfig[featureId];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue