Don't show labs features by default

Previous PR disabled them but still showed the (broken) option
This commit is contained in:
David Baker 2017-10-13 11:48:44 +01:00
parent f5f0c7e715
commit cd64c9bcbb

View file

@ -38,7 +38,8 @@ export default {
return FEATURES.filter((f) => {
const sdkConfigValue = featuresConfig[f.id];
if (!['enable', 'disable'].includes(sdkConfigValue)) {
if (sdkConfigValue === 'labs') {
return true;
}
}).map((f) => {