diff --git a/packages/editor-ui/src/components/WorkflowShareModal.ee.vue b/packages/editor-ui/src/components/WorkflowShareModal.ee.vue index 1ee38e4d32..3ec6cd7eb9 100644 --- a/packages/editor-ui/src/components/WorkflowShareModal.ee.vue +++ b/packages/editor-ui/src/components/WorkflowShareModal.ee.vue @@ -478,7 +478,9 @@ export default defineComponent({ }, watch: { workflow(workflow) { - this.sharedWith = workflow.sharedWith; + if (workflow.sharedWith) { + this.sharedWith = workflow.sharedWith; + } }, }, });