mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-12 15:52:57 +00:00
fix
This commit is contained in:
parent
c33d6c4180
commit
59baa145f0
@ -96,7 +96,10 @@ export const asyncProfilingStore = defineStore({
|
||||
duration: useAppStoreWithOut().durationTime,
|
||||
});
|
||||
if (!res.data.errors) {
|
||||
this.instances = res.data.data.pods || [];
|
||||
this.instances = (res.data.data.pods || []).map((d) => {
|
||||
d.value = d.id;
|
||||
return d;
|
||||
});
|
||||
}
|
||||
return res.data;
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user