Skip to content

Commit e26fb69

Browse files
committed
Fix subworkflow editing
1 parent d396160 commit e26fb69

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

client/src/entry/analysis/modules/WorkflowEditor.vue

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,6 @@ export default {
4343
reloadEditor = false;
4444
this.skipNextReload = false;
4545
}
46-
if (reloadEditor) {
47-
this.editorReloadKey += 1;
48-
}
4946
5047
this.version = Query.get("version");
5148
this.storedWorkflowId = Query.get("id");
@@ -59,6 +56,10 @@ export default {
5956
const { id: storedWorkflowId } = await getWorkflowInfo(workflowId, this.version, true);
6057
this.storedWorkflowId = storedWorkflowId;
6158
}
59+
60+
if (reloadEditor) {
61+
this.editorReloadKey += 1;
62+
}
6263
},
6364
},
6465
};

0 commit comments

Comments
 (0)