From 848e9b117258caaac2b341090b37ee3ecb6dd66f Mon Sep 17 00:00:00 2001 From: Alex Grozav Date: Wed, 2 Aug 2023 14:17:14 +0300 Subject: [PATCH] fix: Fix saving workflow sharing (no-changelog) (#6828) fix: fix saving workflow sharing --- packages/editor-ui/src/components/WorkflowShareModal.ee.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/editor-ui/src/components/WorkflowShareModal.ee.vue b/packages/editor-ui/src/components/WorkflowShareModal.ee.vue index 1ee38e4d3..3ec6cd7eb 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; + } }, }, });