Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reorder sections and rename endpoint groups #7161

Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,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 filter by value in document details in safari [#7151](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7151)

### Removed
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',
},
];
Loading