We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfb6e62 commit bb5a08fCopy full SHA for bb5a08f
src/js/renderer.js
@@ -198,6 +198,11 @@ export default class FormeoRenderer {
198
false
199
)
200
}
201
+
202
+ // Evaluate conditions on load.
203
+ const fakeEvt = { target: component } // We don't have an actual event, mock one.
204
+ this.evaluateCondition(ifRest, fakeEvt) &&
205
+ thenConditions.forEach(thenCondition => this.execResult(thenCondition, fakeEvt))
206
})
207
208
0 commit comments