Ensure user table editing is still allowed for old apps that are imported
This commit is contained in:
parent
73e208292f
commit
b17ec630c1
|
@ -311,10 +311,13 @@ async function performAppCreate(ctx: UserCtx) {
|
|||
}
|
||||
})
|
||||
|
||||
// Keep existing validation setting
|
||||
// Keep existing feature flags
|
||||
if (!existing.features?.componentValidation) {
|
||||
newApplication.features!.componentValidation = false
|
||||
}
|
||||
if (!existing.features?.disableUserMetadata) {
|
||||
newApplication.features!.disableUserMetadata = false
|
||||
}
|
||||
|
||||
// Migrate navigation settings and screens if required
|
||||
if (existing) {
|
||||
|
|
Loading…
Reference in New Issue