Skip to content

Commit ffdc9ee

Browse files
committed
small fix
1 parent 8fbfe5a commit ffdc9ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/web-flow-executor/src/nodes/expression.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ export const getExpression: NodeTaskFactory<NodeInfo> = (
147147
}
148148
let result: any = false;
149149
try {
150-
compileExpression(node?.nodeInfo?.formValues?.['expression'] ?? 'input');
150+
compileExpression(node?.nodeInfo?.formValues?.['expression'] || 'input');
151151
if (!expressionCache[node.id]) {
152152
return {
153153
result: undefined,

0 commit comments

Comments
 (0)