1
0
Fork 0
mirror of synced 2024-09-08 13:41:09 +12:00

Merge branch 'master' into feature/offline-mode-k8s

This commit is contained in:
Martin McKeaveney 2023-07-31 15:54:37 +01:00 committed by GitHub
commit 25cf03664b
2 changed files with 6 additions and 1 deletions

View file

@ -1,5 +1,5 @@
{
"version": "2.8.29",
"version": "2.8.30",
"npmClient": "yarn",
"packages": [
"packages/*"

View file

@ -331,6 +331,11 @@ async function performAppCreate(ctx: UserCtx) {
}
})
// Keep existing validation setting
if (!existing.features?.componentValidation) {
newApplication.features!.componentValidation = false
}
// Migrate navigation settings and screens if required
if (existing) {
const navigation = await migrateAppNavigation()