From d4f8ab835a34aab195fe6da23ca8c1cea2c328bd Mon Sep 17 00:00:00 2001 From: ChnMig Date: Sun, 26 May 2024 19:20:02 +0800 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20=F0=9F=90=9B=20step?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复打标条目缺失问题 --- view/src/pages/detection/page/Step.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/src/pages/detection/page/Step.vue b/view/src/pages/detection/page/Step.vue index bcef73e..1d2b865 100644 --- a/view/src/pages/detection/page/Step.vue +++ b/view/src/pages/detection/page/Step.vue @@ -167,7 +167,7 @@ async function makeData(id) { if (data.mark[list[index].page]) { data.mark[list[index].page].push(list[index]); } else { - data.mark[list[index].page] = []; + data.mark[list[index].page] = [list[index]]; } } } From db9217f6b1f0b28f4ed1adfb00088aaf707353b9 Mon Sep 17 00:00:00 2001 From: ChnMig Date: Sun, 26 May 2024 19:22:20 +0800 Subject: [PATCH 2/2] =?UTF-8?q?build:=20=F0=9F=9B=A0=EF=B8=8F=202.1.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- view/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/package.json b/view/package.json index e207a80..ccb4992 100644 --- a/view/package.json +++ b/view/package.json @@ -1,6 +1,6 @@ { "name": "app-scan", - "version": "2.1.4", + "version": "2.1.5", "description": "自动化隐私检测工具", "productName": "app-scan", "author": "TongchengSecurityTeam ",