Skip to content

Commit

Permalink
[frontend] Add types filtering for related entities in cases (#8911)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kedae committed Nov 6, 2024
1 parent e083712 commit a8e93b4
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ const CaseIncident: React.FC<CaseIncidentProps> = ({ caseIncidentData, enableRef
'Attack-Pattern',
'Identity',
'Location',
'Vulnerability',
]}
title={t_i18n('Other entities')}
enableReferences={enableReferences}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,17 @@ const CaseRfi: React.FC<CaseRfiProps> = ({ caseRfiData, enableReferences }) => {
<ContainerStixObjectsOrStixRelationships
isSupportParticipation={false}
container={caseRfi}
types={[
'Threat-Actor',
'Intrusion-Set',
'Campaign',
'Malware',
'Tool',
'Attack-Pattern',
'Identity',
'Location',
'Vulnerability',
]}
enableReferences={enableReferences}
/>
</Grid>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,17 @@ const CaseRft: React.FC<CaseRftProps> = ({ caseRftData, enableReferences }) => {
<ContainerStixObjectsOrStixRelationships
isSupportParticipation={false}
container={caseRft}
types={[
'Threat-Actor',
'Intrusion-Set',
'Campaign',
'Malware',
'Tool',
'Attack-Pattern',
'Identity',
'Location',
'Vulnerability',
]}
enableReferences={enableReferences}
/>
</Grid>
Expand Down

0 comments on commit a8e93b4

Please sign in to comment.