Merge pull request #8508 from Budibase/fix/disable-screen-validation

Disable screen validation
This commit is contained in:
Michael Drury 2022-11-03 14:43:40 +00:00 committed by GitHub
commit b5d50df3a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -245,7 +245,10 @@ export const getFrontendStore = () => {
}
},
save: async screen => {
store.actions.screens.validate(screen)
/*
Temporarily disabled to accomodate migration issues.
store.actions.screens.validate(screen)
*/
const state = get(store)
const creatingNewScreen = screen._id === undefined
const savedScreen = await API.saveScreen(screen)