From 4f8cb9076a8eaed49fc31a18e697761e45ec592e Mon Sep 17 00:00:00 2001 From: Fine Date: Thu, 18 Jan 2024 11:27:26 +0800 Subject: [PATCH] fix: update --- src/views/dashboard/related/topology/components/Graph.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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); }, );