Skip to content

Commit

Permalink
Merge pull request #1234 from akto-api-security/feature/export_csv
Browse files Browse the repository at this point in the history
fixing issues column for csv
  • Loading branch information
notshivansh authored Jul 1, 2024
2 parents 80e991b + 17c35d7 commit f3f3966
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -368,8 +368,9 @@ const transform = {
getIssuesListText(severityInfo){
let val = "-"
if(Object.keys(severityInfo).length > 0){
val = ""
Object.keys(severityInfo).map((key) => {
val += (key + ": " + severityInfo[key] + ", ")
val += (key + ": " + severityInfo[key] + " ")
})
}
return val
Expand Down

0 comments on commit f3f3966

Please sign in to comment.