Skip to content

Commit

Permalink
Merge branch '4.4-2.4-wzd' into fix/support-171-agents-inventory-sear…
Browse files Browse the repository at this point in the history
…ch-q-parameter
  • Loading branch information
Tostti committed Mar 30, 2023
2 parents faf7dcd + a24a1b7 commit 7f0ac99
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion public/components/visualize/visualizations.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const visualizations = {
]
},
{
height: 300,
height: 350,
vis: [
{
title: 'Rule distribution',
Expand Down
6 changes: 3 additions & 3 deletions public/components/wz-date-picker/components/condensed.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ export function CondensedPicker({ ranges, onTimeChange }) {
return result;
}

const button = (<EuiButtonEmpty
onClick={() => setIsOpen(true)}
const button = (<EuiButtonEmpty
onClick={() => setIsOpen(!isOpen)}
iconType="arrowDown"
iconSide="right">
{!!customRange
Expand Down Expand Up @@ -78,4 +78,4 @@ export function CondensedPicker({ ranges, onTimeChange }) {
</EuiPopover>
)

}
}

0 comments on commit 7f0ac99

Please sign in to comment.