Skip to content

Commit

Permalink
Correctly show/hide experimental features in stable builds (#2572)
Browse files Browse the repository at this point in the history
  • Loading branch information
EricJohnson327 committed Apr 10, 2024
1 parent 690127e commit b747810
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/ExperimentalFeatures.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ This is useful for features that are not ready for general use, but can be teste
"visible": true
},
{
"buildType": "release",
"buildType": "stable",
"enabledByDefault": false,
"visible": false
}
Expand Down
10 changes: 5 additions & 5 deletions src/NavConfig.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@
{
"buildType": "dev",
"enabledByDefault": true,
"visible": true
"visible": false
},
{
"buildType": "canary",
"enabledByDefault": true,
"visible": true
},
{
"buildType": "release",
"buildType": "stable",
"enabledByDefault": false,
"visible": false
}
Expand All @@ -74,7 +74,7 @@
"visible": false
},
{
"buildType": "release",
"buildType": "stable",
"enabledByDefault": false,
"visible": false
}
Expand All @@ -95,7 +95,7 @@
"visible": false
},
{
"buildType": "release",
"buildType": "stable",
"enabledByDefault": false,
"visible": false
}
Expand All @@ -116,7 +116,7 @@
"visible": true
},
{
"buildType": "release",
"buildType": "stable",
"enabledByDefault": false,
"visible": false
}
Expand Down

0 comments on commit b747810

Please sign in to comment.