Fix wrong sidebar config opened when pasting workflow steps

This commit is contained in:
Jože Fortun
2024-09-23 11:31:59 +02:00
parent 19249f345d
commit 0c08742a40
@@ -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)
})
}
}
})