We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 159180f + 5e1dfe6 commit 3c73180Copy full SHA for 3c73180
src/components/Retool.js
@@ -84,7 +84,7 @@ const Retool = ({
84
const postMessageForSelector = (messageType, eventData) => {
85
const maybeData = data[eventData.selector];
86
87
- if (maybeData) {
+ if (maybeData !== undefined) {
88
embeddedIframe.current.contentWindow.postMessage(
89
{
90
type: messageType,
0 commit comments