Skip to content

Commit cbcfefc

Browse files
authored
Merge pull request #288 from Bidaya0/bugfix/vuln-list-display-change
fix(vuln): change vul list display.
2 parents f8fd066 + f61a5bd commit cbcfefc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/views/vuln/VulnDetail.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"
2222
>
2323
{{
24-
`${vulnObj.vul.url}${vulnObj.vul.http_method}出现${
24+
`${vulnObj.vul.url} ${vulnObj.vul.http_method}出现${
2525
vulnObj.vul.type
2626
}漏洞${
2727
vulnObj.vul.taint_position

src/views/vuln/components/vulnCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ export default class VulnList extends VueBase {
193193
194194
get itemTitle() {
195195
let title = ''
196-
title = `${this.item.uri} ${this.item.http_method} 出现 ${this.item.strategy__vul_name}`
196+
title = `${this.item.uri} ${this.item.http_method} 出现 ${this.item.strategy__vul_name}`
197197
if (this.item.taint_position) {
198198
title += '位置:' + this.item.taint_position
199199
}

0 commit comments

Comments
 (0)