diff --git a/packages/editor-ui/src/components/mixins/workflowHelpers.ts b/packages/editor-ui/src/components/mixins/workflowHelpers.ts index 9b9cddb655..0755db5efc 100644 --- a/packages/editor-ui/src/components/mixins/workflowHelpers.ts +++ b/packages/editor-ui/src/components/mixins/workflowHelpers.ts @@ -324,7 +324,7 @@ export const workflowHelpers = mixins( const nodes = this.getNodes(); const connections = (this.$store.getters.allConnections as IConnections); const cacheKey = JSON.stringify({nodes, connections}); - if (cachedWorkflow && cacheKey === cachedWorkflowKey) { + if (!copyData && cachedWorkflow && cacheKey === cachedWorkflowKey) { return cachedWorkflow; } cachedWorkflowKey = cacheKey;