You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by li...@apache.org on 2023/02/24 09:46:52 UTC

[skywalking-booster-ui] branch main updated: fix: data (#240)

This is an automated email from the ASF dual-hosted git repository.

liuhan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-booster-ui.git


The following commit(s) were added to refs/heads/main by this push:
     new 5cc913a  fix: data (#240)
5cc913a is described below

commit 5cc913a33233d7fb0db151af4e4e444eb3a9a24b
Author: Fine0830 <fa...@gmail.com>
AuthorDate: Fri Feb 24 17:46:46 2023 +0800

    fix: data (#240)
---
 src/views/dashboard/related/ebpf/components/EBPFStack.vue | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/views/dashboard/related/ebpf/components/EBPFStack.vue b/src/views/dashboard/related/ebpf/components/EBPFStack.vue
index de7ec9c..0d5f3db 100644
--- a/src/views/dashboard/related/ebpf/components/EBPFStack.vue
+++ b/src/views/dashboard/related/ebpf/components/EBPFStack.vue
@@ -128,7 +128,7 @@ limitations under the License. -->
   }
 
   function processTree(arr: StackElement[]) {
-    const copyArr = (window as any).structuredClone(arr);
+    const copyArr = JSON.parse(JSON.stringify(arr));
     const obj: any = {};
     let res = null;
     for (const item of copyArr) {