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 8fbfe5a commit ffdc9eeCopy full SHA for ffdc9ee
libs/web-flow-executor/src/nodes/expression.ts
@@ -147,7 +147,7 @@ export const getExpression: NodeTaskFactory<NodeInfo> = (
147
}
148
let result: any = false;
149
try {
150
- compileExpression(node?.nodeInfo?.formValues?.['expression'] ?? 'input');
+ compileExpression(node?.nodeInfo?.formValues?.['expression'] || 'input');
151
if (!expressionCache[node.id]) {
152
return {
153
result: undefined,
0 commit comments