diff --git a/CHANGELOG.md b/CHANGELOG.md index 7eaae4ee78..029477d859 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,8 +7,10 @@ All notable changes to the Wazuh app project will be documented in this file. ### Fixed - Fixed the search in the agent inventory data tables [#5196](https://github.com/wazuh/wazuh-kibana-app/pull/5196) +- 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/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', 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 +}