Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Agent view Mitre ATT&CK exception #7116

Merged
merged 20 commits into from
Oct 29, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ All notable changes to the Wazuh app project will be documented in this file.
- Fixed export formatted csv data with special characters from tables [#7048](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7048)
- Fixed column reordering feature [#7072](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7072)
- Fixed filter management to prevent hiding when adding multiple filters [#7077](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7077)
- Fixed agent view Mitre ATT&CK exception [#7116](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7116)
- Fixed vulnerabilities inventory table scroll [#7118](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7118)
- Fixed the filter are displayed cropped on screens of 575px to 767px in vulnerability detection module [#7047](https://github.com/wazuh/wazuh-dashboard-plugins/pull/7047)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*
* Find more information about this on the LICENSE file.
*/
import React, { useEffect, useState, useMemo } from 'react';
import React, { useEffect, useState, useMemo, Fragment } from 'react';
import $ from 'jquery';
import {
EuiFlyoutHeader,
Expand Down Expand Up @@ -286,7 +286,7 @@ export const FlyoutTechnique = (props: tFlyoutTechniqueProps) => {
description: techniqueData.tactics
? techniqueData.tactics.map(tactic => {
return (
<>
<Fragment key={tactic.id}>
<EuiToolTip
position='top'
content={`Open ${tactic.name} details in the Intelligence section`}
Expand All @@ -310,7 +310,7 @@ export const FlyoutTechnique = (props: tFlyoutTechniqueProps) => {
</EuiLink>
</EuiToolTip>
<br />
</>
</Fragment>
);
})
: '',
Expand Down Expand Up @@ -397,7 +397,7 @@ export const FlyoutTechnique = (props: tFlyoutTechniqueProps) => {
DataSource={PatternDataSource}
tableColumns={getDiscoverColumns()}
filterManager={filterManager}
initialFetchFilters={filterParams.filters}
initialFetchFilters={filterParams?.filters || []}
expandedRowComponent={expandedRow}
/>
</EuiAccordion>
Expand Down
Loading
Loading