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

Merge pull request #8506 from Budibase/fix/8491

Fix for auto-generated screens - buttons navigating correctly
This commit is contained in:
Michael Drury 2022-11-03 13:52:36 +00:00 committed by GitHub
commit baf8747031
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -225,7 +225,10 @@ const changeFormStepHandler = async (action, context) => {
}
const closeScreenModalHandler = action => {
let { url } = action.parameters
let url
if (action?.parameters) {
url = action.parameters.url
}
// Emit this as a window event, so parent screens which are iframing us in
// can close the modal
window.parent.postMessage({ type: "close-screen-modal", url })