From 80912b9c4d3ad8bc49812363d182243947477e67 Mon Sep 17 00:00:00 2001 From: wuyulong11 Date: Tue, 27 Jun 2023 11:38:24 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E4=BF=AE=E6=94=B9=E8=AF=B4=E6=98=8E?= =?UTF-8?q?=E3=80=91=20=E4=BF=AE=E6=94=B9Memory=20View=E7=95=8C=E9=9D=A2?= =?UTF-8?q?=E6=8A=98=E7=BA=BF=E5=9B=BE=E7=BB=84=E4=BB=B6=E6=A1=86=E9=80=89?= =?UTF-8?q?=E8=8C=83=E5=9B=B4=E5=86=85=E6=95=B0=E6=8D=AE=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E5=BC=82=E5=B8=B8=E9=97=AE=E9=A2=98=20=E3=80=90=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E4=BA=BA=E3=80=91=20wuyulong=2030031080?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tb_plugins/profiling/tb_plugin/fe/src/components/MemoryView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tb_plugins/profiling/tb_plugin/fe/src/components/MemoryView.tsx b/tb_plugins/profiling/tb_plugin/fe/src/components/MemoryView.tsx index e9ec99fa3f..dfe8a9cac2 100644 --- a/tb_plugins/profiling/tb_plugin/fe/src/components/MemoryView.tsx +++ b/tb_plugins/profiling/tb_plugin/fe/src/components/MemoryView.tsx @@ -366,7 +366,7 @@ export const MemoryView: React.FC = React.memo((props) => { needLoopStart = false realStart = i - 1 } - if (allDatas[i] !== allDatas[i - 1]) { + if (allDatas[i][0] !== allDatas[i - 1][0]) { if (startId <= start) { startId += 1 } -- Gitee