1
0
Fork 0
mirror of synced 2024-06-30 03:50:37 +12:00

Add identifier to messages sent to client iframe preview to avoid conflicts with embedded iframe events

This commit is contained in:
Andrew Kingston 2022-03-22 18:15:41 +00:00
parent c586049043
commit 7e32bd5fd0
2 changed files with 2 additions and 1 deletions

View file

@ -68,6 +68,7 @@
customTheme: $store.customTheme,
previewDevice: $store.previewDevice,
messagePassing: $store.clientFeatures.messagePassing,
isBudibaseEvent: true
}
$: json = JSON.stringify(previewData)

View file

@ -52,7 +52,7 @@ export default `
console.error("Client received invalid JSON")
// Ignore
}
if (!parsed) {
if (!parsed || !parsed.isBudibaseEvent) {
return
}