We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d396160 commit e26fb69Copy full SHA for e26fb69
client/src/entry/analysis/modules/WorkflowEditor.vue
@@ -43,9 +43,6 @@ export default {
43
reloadEditor = false;
44
this.skipNextReload = false;
45
}
46
- if (reloadEditor) {
47
- this.editorReloadKey += 1;
48
- }
49
50
this.version = Query.get("version");
51
this.storedWorkflowId = Query.get("id");
@@ -59,6 +56,10 @@ export default {
59
56
const { id: storedWorkflowId } = await getWorkflowInfo(workflowId, this.version, true);
60
57
this.storedWorkflowId = storedWorkflowId;
61
58
+
+ if (reloadEditor) {
+ this.editorReloadKey += 1;
62
+ }
63
},
64
65
};
0 commit comments