Skip to content

Commit

Permalink
Improve intelligence flyout details readability (#6954)
Browse files Browse the repository at this point in the history
* Get details darker

* Added changelog

* Update CHANGELOG
  • Loading branch information
JuanGarriuz authored Sep 2, 2024
1 parent 24a04f0 commit 4494d16
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ All notable changes to the Wazuh app project will be documented in this file.
### Changed

- Upgraded the `axios` dependency to `1.7.4` [#6919](https:/wazuh/wazuh-dashboard-plugins/pull/6919)
- Improved MITRE ATT&CK intelligence flyout details readability [#6954](https:/wazuh/wazuh-dashboard-plugins/pull/6954)

## Wazuh v4.9.0 - OpenSearch Dashboards 2.13.0 - Revision 05

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,7 @@ import { MitreAttackResources } from './resources';
import { ReferencesTable } from './resource_detail_references_table';

import {
EuiFlyout,
EuiFlyoutHeader,
EuiOverlayMask,
EuiOutsideClickDetector,
EuiTitle,
EuiText,
EuiFlexGroup,
Expand Down Expand Up @@ -64,7 +61,7 @@ export const ModuleMitreAttackIntelligenceFlyout = ({
<div>
<strong>{detailProperty.label}</strong>
</div>
<EuiText color='subdued'>
<EuiText>
{detailProperty.render
? detailProperty.render(details[detailProperty.id])
: details[detailProperty.id]}
Expand All @@ -79,7 +76,7 @@ export const ModuleMitreAttackIntelligenceFlyout = ({
<div>
<strong>Description</strong>
</div>
<EuiText color='subdued'>
<EuiText>
{details.description ? (
<Markdown markdown={details.description} />
) : (
Expand Down

0 comments on commit 4494d16

Please sign in to comment.