Skip to content

Commit

Permalink
Add priority to policies list view
Browse files Browse the repository at this point in the history
  • Loading branch information
nas-tabchiche committed Dec 5, 2024
1 parent 225db00 commit 7bd1af5
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions frontend/src/lib/utils/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -374,8 +374,28 @@ export const listViewFields: ListViewFieldsConfig = {
}
},
policies: {
head: ['name', 'description', 'csfFunction', 'eta', 'owner', 'domain', 'referenceControl'],
body: ['name', 'description', 'csf_function', 'eta', 'owner', 'folder', 'reference_control'],
head: [
'ref_id',
'name',
'priority',
'status',
'csfFunction',
'eta',
'owner',
'domain',
'referenceControl'
],
body: [
'ref_id',
'name',
'priority',
'status',
'csf_function',
'eta',
'owner',
'folder',
'reference_control'
],
filters: {
folder: DOMAIN_FILTER,
status: STATUS_FILTER,
Expand Down

0 comments on commit 7bd1af5

Please sign in to comment.