diff --git a/src/views/dashboard/related/topology/components/Graph.vue b/src/views/dashboard/related/topology/components/Graph.vue index c55e2fdf..220205db 100644 --- a/src/views/dashboard/related/topology/components/Graph.vue +++ b/src/views/dashboard/related/topology/components/Graph.vue @@ -186,7 +186,9 @@ limitations under the License. --> if (!props.calls.length) { return; } - init(); + setTimeout(() => { + init(); + }, 10); }, );