Skip to content

Commit

Permalink
Merge pull request #1925 from akto-api-security/hotfix/fix_ui_filters…
Browse files Browse the repository at this point in the history
…_report

Sending as a list of string
  • Loading branch information
notshivansh authored Jan 6, 2025
2 parents 9c630b1 + 3bcca91 commit 204f400
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -376,9 +376,11 @@ function IssuesPage() {
filterSubCategory = filterSubCategory.concat(categoryToSubCategories[issue])
})

const collectionIdsArray = filterCollectionsId.map((x) => {return x.toString()})

let obj = {
'filterStatus': filterStatus,
'filterCollectionsId': [filterCollectionsId.toString()],
'filterCollectionsId': collectionIdsArray,
'filterSeverity': filterSeverity,
filterSubCategory: filterSubCategory,
startEpoch: [startTimestamp.toString()]
Expand Down

0 comments on commit 204f400

Please sign in to comment.