Skip to content

Commit

Permalink
fix(editor): Set only workflow name
Browse files Browse the repository at this point in the history
  • Loading branch information
cstuncsik committed May 30, 2024
1 parent ca028c7 commit 4210281
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/editor-ui/src/views/WorkflowExecutionsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ async function fetchWorkflow() {
const tags = (data.tags ?? []) as ITag[];
workflow.value = data;
workflowsStore.setWorkflow(data);
workflowsStore.setWorkflowName({ newName: data.name, setStateDirty: false });
workflowsStore.setWorkflowTagIds(tags.map(({ id }) => id) ?? []);
tagsStore.upsertTags(tags);
}
Expand Down

0 comments on commit 4210281

Please sign in to comment.