diff --git a/CHANGELOG.md b/CHANGELOG.md index fdc9197b1b..164adb403f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ All notable changes to the Wazuh app project will be documented in this file. ### Added - Added Tools on wazuh menu with Dev Console and Logtest [#1434](https://github.com/wazuh/wazuh-kibana-app/pull/1434) +- Added page size options in Security events, explore agents table [#2925](https://github.com/wazuh/wazuh-kibana-app/pull/2925) - Add a message to restart cluster or manager after import a file in Rules, Decoders or CDB Lists [#3051](https://github.com/wazuh/wazuh-kibana-app/pull/3051) - Add `logtest` PUT example on API Console [#3061](https://github.com/wazuh/wazuh-kibana-app/pull/3061) @@ -21,7 +22,6 @@ All notable changes to the Wazuh app project will be documented in this file. - Fix space character missing on deployment command if UDP is configured [#3108](https://github.com/wazuh/wazuh-kibana-app/pull/3108) - Fixed name for "TCP sessions" visualization and average metric is now a sum [#3118](https://github.com/wazuh/wazuh-kibana-app/pull/3118) - ## Wazuh v4.1.4 - Kibana 7.10.0 , 7.10.2 - Revision 4105 - Adapt for Wazuh 4.1.4 diff --git a/public/components/common/modules/main.tsx b/public/components/common/modules/main.tsx index 31987fd8f2..22d8e5ff34 100644 --- a/public/components/common/modules/main.tsx +++ b/public/components/common/modules/main.tsx @@ -104,7 +104,7 @@ export class MainModule extends Component { this.setState({ loadingReport: true }); const isDarkModeTheme = getUiSettings().get('theme:darkMode'); if (isDarkModeTheme) { - const defaultTextColor = $('#moduleDashboard .euiButtonEmpty__text').children().css('color'); + const defaultTextColor = '#DFE5EF'; try { $('.euiButtonEmpty__text').css('color', 'black'); await this.startVis2PngByAgent(); diff --git a/public/controllers/overview/components/overview-actions/agents-selection-table.js b/public/controllers/overview/components/overview-actions/agents-selection-table.js index db728f8e77..5e1a2d0f72 100644 --- a/public/controllers/overview/components/overview-actions/agents-selection-table.js +++ b/public/controllers/overview/components/overview-actions/agents-selection-table.js @@ -469,6 +469,7 @@ export class AgentSelectionTable extends Component { pageIndex: this.state.pageIndex, pageSize: this.state.itemsPerPage, totalItemCount: this.state.totalItems, + pageSizeOptions: [10, 25, 50, 100] }; this.columns.forEach(column => { @@ -684,7 +685,7 @@ export class AgentSelectionTable extends Component {