1
0
Fork 0
mirror of synced 2024-08-15 10:01:34 +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 644fd0da87
commit 406776088d
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
}