Skip to content

Commit

Permalink
Reorder sections and rename endpoint groups (#7161)
Browse files Browse the repository at this point in the history
reorder sections and rename endpoint groups

Co-authored-by: Ian Yenien Serrano <[email protected]>
  • Loading branch information
chantal-kelm and yenienserrano authored Nov 14, 2024
1 parent 9641e81 commit a5327b9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ All notable changes to the Wazuh app project will be documented in this file.
- Fixed the Mitre ATT&CK exception in the agent view, the redirections of ID, Tactics, Dashboard Icon and Event Icon in the drop-down menu and the card not displaying information when the flyout was opened [#7116](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7116)
- Fixed the filter are displayed cropped on screens of 575px to 767px in vulnerability detection module [#7047](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7047)
- Fixed ability to filter from files inventory details flyout of File Integrity Monitoring [#7119](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7119)
- Fixed endpoint group module name and indexer management order [#7150](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7150)
- Fixed Invalid date filter applied on FIM details flyout [#7160](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7160)
- Fixed the check updates UI was displayed despite it could be configured as disabled [#7156](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7156)
- Fixed filter by value in document details in safari [#7151](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7151)
Expand Down
20 changes: 10 additions & 10 deletions plugins/main/public/utils/applications.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ Security operations: 400
Cloud security: 500
Agents management: 600
Server management: 700
Dashboard management
Indexer management (added to Wazuh dashboard default categories): 9000
Dashboard management
*/

export const overview = {
Expand Down Expand Up @@ -489,10 +489,10 @@ export const endpointGroups = {
category: 'wz-category-agents-management',
id: 'endpoint-groups',
title: i18n.translate('wz-app-endpoint-groups-title', {
defaultMessage: 'Endpoint Groups',
defaultMessage: 'Groups',
}),
breadcrumbLabel: i18n.translate('wz-app-endpoint-groups-breadcrumbLabel', {
defaultMessage: 'Endpoint Groups',
defaultMessage: 'Groups',
}),
description: i18n.translate('wz-app-endpoint-groups-description', {
defaultMessage: 'Manage your agent groups.',
Expand Down Expand Up @@ -914,18 +914,18 @@ export const Categories = [
order: 700,
euiIconType: 'indexRollupApp',
},
{
id: 'management',
label: 'Indexer management',
order: 5e3,
euiIconType: 'managementApp',
},
{
id: 'wz-category-dashboard-management',
label: i18n.translate('wz-app-category-dashboard-management', {
defaultMessage: 'Dashboard management',
}),
order: 5e3,
euiIconType: 'dashboardApp',
},
{
id: 'management',
label: 'Indexer management',
order: 6e3,
euiIconType: 'managementApp',
euiIconType: 'dashboardApp',
},
];

0 comments on commit a5327b9

Please sign in to comment.