Skip to content

Commit 1e4d034

Browse files
committed
meta value fix
1 parent e647212 commit 1e4d034

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

libs/web-flow-executor/src/nodes/show-input.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ export const getShowInput: NodeTaskFactory<NodeInfo> = (
265265
displayName: 'raw input value',
266266
type: 'json',
267267
getData: () => {
268-
return { value: inputValues };
268+
return inputValues;
269269
},
270270
},
271271
];

libs/web-flow-executor/src/nodes/show-value.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ return ${input ? input : '""'};})(${input ? input : '""'});\
290290
displayName: 'raw input value',
291291
type: 'json',
292292
getData: () => {
293-
return { value: inputValues };
293+
return inputValues;
294294
},
295295
},
296296
];

0 commit comments

Comments
 (0)