Skip to content

Commit

Permalink
fix(editor): Add pinned data only to manual executions in execution view
Browse files Browse the repository at this point in the history
  • Loading branch information
cstuncsik committed Aug 29, 2024
1 parent c988931 commit 2a392c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/editor-ui/src/views/NodeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -998,7 +998,7 @@ export default defineComponent({
});
this.workflowsStore.setWorkflowId(PLACEHOLDER_EMPTY_WORKFLOW_ID);
this.workflowsStore.setWorkflowExecutionData(data);
if (data.workflowData.pinData) {
if (data.workflowData.pinData && data.mode === 'manual') {
this.workflowsStore.setWorkflowPinData(data.workflowData.pinData);
}
Expand Down

0 comments on commit 2a392c1

Please sign in to comment.