Skip to content

Commit

Permalink
Change the order of column in Vulnerabilities Detection > Events table (
Browse files Browse the repository at this point in the history
#6949)

* change: vulnerabilities detection events table colums order

- Add status property to the sample data of vulnerabilities detection alerts
  to let the render of the expected columns in the
  vulnerabilities detection > events table

* change(changelog): add entry

* fix(changelog): pull request reference
  • Loading branch information
Desvelao authored Aug 29, 2024
1 parent 40fe7a7 commit 440473b
Show file tree
Hide file tree
Showing 4 changed files with 8,003 additions and 130 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ All notable changes to the Wazuh app project will be documented in this file.
- Changed the internal control from Endpoint Groups to a control via url. [#6890](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6890)
- Changed the internal control from MITRE ATT&CK > intelligence > Table to a control via url. [#6882](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6882)
- Changed the display of rule details flyout to be based on URL [#6886](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6886)
- Changed the order of columns on Vulnerabilities Detection > Events table [#6949](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6949)

### Fixed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ export const vulnerabilitiesColumns: tDataGridColumn[] = [
{
id: 'agent.name',
},
{
id: 'data.vulnerability.package.name',
},
{
id: 'data.vulnerability.cve',
},
{
id: 'data.vulnerability.severity',
},
{
id: 'data.vulnerability.status',
id: 'data.vulnerability.package.name',
},
{
id: 'data.vulnerability.package.version',
},
{
id: 'data.vulnerability.status',
},
];
Loading

0 comments on commit 440473b

Please sign in to comment.