From 1450f34bd36f34d2535c2fc18db864202b4ec193 Mon Sep 17 00:00:00 2001 From: Fine Date: Mon, 30 Dec 2024 15:20:14 +0800 Subject: [PATCH] fix --- src/store/modules/async-profiling.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/modules/async-profiling.ts b/src/store/modules/async-profiling.ts index 1dffcc04..de865c8c 100644 --- a/src/store/modules/async-profiling.ts +++ b/src/store/modules/async-profiling.ts @@ -97,7 +97,7 @@ export const asyncProfilingStore = defineStore({ }); if (!res.data.errors) { this.instances = (res.data.data.pods || []).map((d: Instance) => { - d.value = d.id; + d.value = d.id || ""; return d; }); }