fix(editor): Fix workflow activation from the Workflows view (#4549)

🐛 Fixing a bug when activating workflow from workflows view
This commit is contained in:
Milorad FIlipović
2022-11-08 18:05:50 +01:00
committed by GitHub
parent 026fb50512
commit d2bec63cec
7 changed files with 16 additions and 8 deletions

View File

@@ -94,7 +94,7 @@ export default mixins(
},
methods: {
async activeChanged (newActiveState: boolean) {
return this.updateWorkflowActivation(this.workflowId, newActiveState);
return await this.updateWorkflowActivation(this.workflowId, newActiveState);
},
async displayActivationError () {
let errorMessage: string;