mirror of
https://github.com/element-hq/element-web
synced 2024-11-29 04:48:50 +03:00
Don't show labs features by default
Previous PR disabled them but still showed the (broken) option
This commit is contained in:
parent
f5f0c7e715
commit
cd64c9bcbb
1 changed files with 2 additions and 1 deletions
|
@ -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) => {
|
||||
|
|
Loading…
Reference in a new issue