From 7d3e2e7220e8baf5b8056d55775847ee51b1c682 Mon Sep 17 00:00:00 2001 From: Ian Yenien Serrano <63758389+yenienserrano@users.noreply.github.com> Date: Thu, 30 Mar 2023 17:04:55 +0200 Subject: [PATCH 1/2] Change height to table `top 5 users` in fim::dashboard (#5334) * Change height to visualization * Add changelog --- CHANGELOG.md | 2 ++ public/components/visualize/visualizations.js | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d352b1144..0047f6f8bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ All notable changes to the Wazuh app project will be documented in this file. ## Wazuh v4.4.1 - OpenSearch Dashboards 2.6.0 - Revision 00 ### Fixed + +- Fixed `Top 5 users` table overflow in `FIM::Dashboard` [#5334](https://github.com/wazuh/wazuh-kibana-app/pull/5334) - Fixed a visual error in the 'About' section. [#5337](https://github.com/wazuh/wazuh-kibana-app/pull/5337) - Fixed the `Anomaly and malware detection` link. [#5329](https://github.com/wazuh/wazuh-kibana-app/pull/5329) diff --git a/public/components/visualize/visualizations.js b/public/components/visualize/visualizations.js index 446c85fe8c..28d3868fbe 100644 --- a/public/components/visualize/visualizations.js +++ b/public/components/visualize/visualizations.js @@ -72,7 +72,7 @@ export const visualizations = { ] }, { - height: 300, + height: 350, vis: [ { title: 'Rule distribution', From a24a1b77e767c25190ba52ef3fc45816c0a271b7 Mon Sep 17 00:00:00 2001 From: Ian Yenien Serrano <63758389+yenienserrano@users.noreply.github.com> Date: Thu, 30 Mar 2023 18:58:41 +0200 Subject: [PATCH 2/2] Fix timepicker close (#5341) * Fix timepicker close * Add changelog * Update CHANGELOG.md --- CHANGELOG.md | 1 + public/components/wz-date-picker/components/condensed.tsx | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0047f6f8bd..520b0e5f46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ All notable changes to the Wazuh app project will be documented in this file. - Fixed `Top 5 users` table overflow in `FIM::Dashboard` [#5334](https://github.com/wazuh/wazuh-kibana-app/pull/5334) - Fixed a visual error in the 'About' section. [#5337](https://github.com/wazuh/wazuh-kibana-app/pull/5337) - Fixed the `Anomaly and malware detection` link. [#5329](https://github.com/wazuh/wazuh-kibana-app/pull/5329) +- Fixed the problem that did not allow closing the time picker when the button was clicked again in `Agents` and `Management/Statistics`. [#5341](https://github.com/wazuh/wazuh-kibana-app/pull/5341) ## Wazuh v4.4.0 - OpenSearch Dashboards 2.4.0 - Revision 06 diff --git a/public/components/wz-date-picker/components/condensed.tsx b/public/components/wz-date-picker/components/condensed.tsx index 8f4f7f4246..2f862b90f9 100644 --- a/public/components/wz-date-picker/components/condensed.tsx +++ b/public/components/wz-date-picker/components/condensed.tsx @@ -48,8 +48,8 @@ export function CondensedPicker({ ranges, onTimeChange }) { return result; } - const button = ( setIsOpen(true)} + const button = ( setIsOpen(!isOpen)} iconType="arrowDown" iconSide="right"> {!!customRange @@ -78,4 +78,4 @@ export function CondensedPicker({ ranges, onTimeChange }) { ) -} \ No newline at end of file +}