Skip to content

Commit c883529

Browse files
authored
Merge pull request #65 from TongchengOpenSource/fix-64
Fix 64
2 parents 79d2017 + db9217f commit c883529

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

view/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "app-scan",
3-
"version": "2.1.4",
3+
"version": "2.1.5",
44
"description": "自动化隐私检测工具",
55
"productName": "app-scan",
66
"author": "TongchengSecurityTeam <[email protected]>",

view/src/pages/detection/page/Step.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ async function makeData(id) {
167167
if (data.mark[list[index].page]) {
168168
data.mark[list[index].page].push(list[index]);
169169
} else {
170-
data.mark[list[index].page] = [];
170+
data.mark[list[index].page] = [list[index]];
171171
}
172172
}
173173
}

0 commit comments

Comments
 (0)