Skip to content

Commit 5ffc165

Browse files
bchapuisclaude
andcommitted
Fix execution output values leaking into saved workflow definition
Strip the `value` field from output parameters during save serialization, matching how input parameters already handle this. Regression from 51373af. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 416fa5a commit 5ffc165

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/app/src/hooks/use-editable-workflow.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ export function useEditableWorkflow({
220220
return parameter as Parameter;
221221
}),
222222
outputs: node.data.outputs.map((output) => {
223-
const { id: _id, ...rest } = output;
223+
const { id: _id, value: _value, ...rest } = output;
224224
return {
225225
...rest,
226226
name: output.id,

0 commit comments

Comments
 (0)