diff --git a/opencti-platform/opencti-front/src/private/components/arsenal/malwares/MalwareKnowledge.jsx b/opencti-platform/opencti-front/src/private/components/arsenal/malwares/MalwareKnowledge.jsx
index 4b69b29c7842..e78ec0ff759e 100644
--- a/opencti-platform/opencti-front/src/private/components/arsenal/malwares/MalwareKnowledge.jsx
+++ b/opencti-platform/opencti-front/src/private/components/arsenal/malwares/MalwareKnowledge.jsx
@@ -143,7 +143,7 @@ class MalwareKnowledgeComponent extends Component {
entityLink={link}
defaultStartTime={malware.first_seen}
defaultStopTime={malware.last_seen}
- isRelationReversed={false}
+ allDirections={true}
/>
)}
/>
diff --git a/opencti-platform/opencti-front/src/private/components/common/stix_core_relationships/EntityStixCoreRelationshipLineAll.jsx b/opencti-platform/opencti-front/src/private/components/common/stix_core_relationships/EntityStixCoreRelationshipLineAll.jsx
index 29c38b25c961..468bc83d487b 100644
--- a/opencti-platform/opencti-front/src/private/components/common/stix_core_relationships/EntityStixCoreRelationshipLineAll.jsx
+++ b/opencti-platform/opencti-front/src/private/components/common/stix_core_relationships/EntityStixCoreRelationshipLineAll.jsx
@@ -68,6 +68,7 @@ class EntityStixCoreRelationshipLineAllComponent extends Component {
index,
} = this.props;
const remoteNode = node.from && node.from.id === entityId ? node.to : node.from;
+ const isReversed = node.from && node.from.id === entityId;
const restricted = node.from === null || node.to === null;
const link = `${entityLink}/relations/${node.id}`;
return (
@@ -97,7 +98,7 @@ class EntityStixCoreRelationshipLineAllComponent extends Component {
/>
-
+