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; }); }