diff --git a/opencti-platform/opencti-front/src/private/components/analyses/reports/ReportKnowledgeGraphBar.jsx b/opencti-platform/opencti-front/src/private/components/analyses/reports/ReportKnowledgeGraphBar.jsx
index c43490a5933b..8a36f902506a 100644
--- a/opencti-platform/opencti-front/src/private/components/analyses/reports/ReportKnowledgeGraphBar.jsx
+++ b/opencti-platform/opencti-front/src/private/components/analyses/reports/ReportKnowledgeGraphBar.jsx
@@ -705,6 +705,44 @@ class ReportKnowledgeGraphBar extends Component {
+ {
+ switch (this.state.selectRelationshipByType) {
+ case 'children':
+ return t('Select Child Relationships of Selected Nodes (From)');
+ case 'parent':
+ return t('Select Parent Relationships of Selected Nodes (To)');
+ case 'deselect':
+ return t('Deselect Relationships of Selected Nodes');
+ default:
+ return t('Select Relationships of Selected Nodes');
+ }
+ })()
+ }
+ >
+
+
+ {(() => {
+ switch (this.state.selectRelationshipByType) {
+ case 'children':
+ return ;
+ case 'parent':
+ return ;
+ case 'deselect':
+ return ;
+ default:
+ return ;
+ }
+ })()}
+
+
+
@@ -948,44 +986,6 @@ class ReportKnowledgeGraphBar extends Component {
- {
- switch (this.state.selectRelationshipByType) {
- case 'children':
- return t('Select Child Relationships of Selected Nodes (From)');
- case 'parent':
- return t('Select Parent Relationships of Selected Nodes (To)');
- case 'deselect':
- return t('Deselect Relationships of Selected Nodes');
- default:
- return t('Select Relationships of Selected Nodes');
- }
- })()
- }
- >
-
-
- {(() => {
- switch (this.state.selectRelationshipByType) {
- case 'children':
- return ;
- case 'parent':
- return ;
- case 'deselect':
- return ;
- default:
- return ;
- }
- })()}
-
-
-