diff --git a/client/web/workflow/src/components/WorkflowEditor.vue b/client/web/workflow/src/components/WorkflowEditor.vue index 3adae5c31..4b4055f99 100644 --- a/client/web/workflow/src/components/WorkflowEditor.vue +++ b/client/web/workflow/src/components/WorkflowEditor.vue @@ -1599,8 +1599,10 @@ export default { }) if (lastVertexID) { - const vertex = this.vertices[lastVertexID] - this.sidebarReopen(vertex, vertex.config.kind) + this.$nextTick(() => { + const vertex = this.vertices[lastVertexID] + this.sidebarReopen(vertex, vertex.config.kind) + }) } } })