fix: Fix saving workflow sharing (no-changelog) (#6828)

fix: fix saving workflow sharing
This commit is contained in:
Alex Grozav 2023-08-02 14:17:14 +03:00 committed by GitHub
parent 3cad60e918
commit 848e9b1172
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -478,7 +478,9 @@ export default defineComponent({
},
watch: {
workflow(workflow) {
this.sharedWith = workflow.sharedWith;
if (workflow.sharedWith) {
this.sharedWith = workflow.sharedWith;
}
},
},
});