Skip to content

Commit

Permalink
Font size correction in table (#6987)
Browse files Browse the repository at this point in the history
* font size correction in threat hunting

* update changelog

* correction in the jq command for macOS in the dev sh file

* Use default styling in renderRequirementsSecurityOperations component

---------

Co-authored-by: Federico Rodriguez <[email protected]>
  • Loading branch information
chantal-kelm and asteriscos authored Sep 17, 2024
1 parent 500def5 commit b8bf9d1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ All notable changes to the Wazuh app project will be documented in this file.
- Fixed an error on the command to deploy a new macOS agent that could cause the registration password had a wrong value because a `\n` could be included [#6906](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6906)
- Fixed rendering an active response as disabled when is active [#6901](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6901)
- Fixed an error on Dev Tools when using payload properties as arrays [#6908](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6908)
- Fixed of the font size in the table used in the events tab, in the Threat hunting dashboard tab and in the Vulnerabilities inventory tab [#6987](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6987)
- Fixed missing link to Vulnerabilities detection and Office 365 in the agent menu of `Endpoints Summary` [#6983](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6983)
- Fixed missing options depending on agent operating system in the agent configuration report [#6983](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6983)
- Fixed an style that affected the Discover plugin [#6989](https://github.com/wazuh/wazuh-dashboard-plugins/pull/6989)
Expand Down
2 changes: 1 addition & 1 deletion docker/osd-dev/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
- In Arch:
`sudo pacman -Sy --noconfirm jq`
- In MAC:
`brew install jq in MAC OS`
`brew install jq`

## Usage

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,7 @@ import { i18n } from '@osd/i18n';
export const MAX_ENTRIES_PER_QUERY = 10000;

const renderRequirementsSecurityOperations = (value: []) => {
return (
<EuiText gutterSize='s' direction='column'>
{value.join(', ')}
</EuiText>
);
return <span>{Array.isArray(value) ? value.join(', ') : value}</span>;
};

const renderMitreTechnique = technique => (
Expand Down

0 comments on commit b8bf9d1

Please sign in to comment.