Skip to content

Commit

Permalink
improve vulnerability display (#1166)
Browse files Browse the repository at this point in the history
  • Loading branch information
nas-tabchiche authored Dec 9, 2024
2 parents 274633a + 336584f commit a0fbdda
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions frontend/src/lib/utils/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -273,8 +273,26 @@ export const listViewFields: ListViewFieldsConfig = {
}
},
vulnerabilities: {
head: ['ref_id', 'name', 'description', 'applied_controls', 'folder', 'labels'],
body: ['ref_id', 'name', 'description', 'applied_controls', 'folder', 'filtering_labels'],
head: [
'ref_id',
'name',
'description',
'status',
'severity',
'applied_controls',
'folder',
'labels'
],
body: [
'ref_id',
'name',
'description',
'status',
'severity',
'applied_controls',
'folder',
'filtering_labels'
],
filters: {
folder: DOMAIN_FILTER,
filtering_labels: LABELS_FILTER
Expand Down

0 comments on commit a0fbdda

Please sign in to comment.