1
0
Fork 0
mirror of synced 2024-06-29 03:20:34 +12:00

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

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)