diff --git a/opencti-platform/opencti-front/src/private/components/analyses/ExternalReferences.tsx b/opencti-platform/opencti-front/src/private/components/analyses/ExternalReferences.tsx index 675717ded8c86..7e48ecf40003d 100644 --- a/opencti-platform/opencti-front/src/private/components/analyses/ExternalReferences.tsx +++ b/opencti-platform/opencti-front/src/private/components/analyses/ExternalReferences.tsx @@ -84,6 +84,7 @@ const externalReferencesLinesFragment = graphql` ) @connection(key: "Pagination_externalReferences") { edges { node { + id ...ExternalReferencesLine_node } } diff --git a/opencti-platform/opencti-front/src/private/components/cases/Tasks.tsx b/opencti-platform/opencti-front/src/private/components/cases/Tasks.tsx index 9464a5280e1b3..3ea739a066ff5 100644 --- a/opencti-platform/opencti-front/src/private/components/cases/Tasks.tsx +++ b/opencti-platform/opencti-front/src/private/components/cases/Tasks.tsx @@ -56,6 +56,7 @@ const tasksLinesFragment = graphql` ) @connection(key: "Pagination_tasks__tasks") { edges { node { + id ...TasksLine_node } } diff --git a/opencti-platform/opencti-front/src/private/components/data/import/ImportFilesContent.tsx b/opencti-platform/opencti-front/src/private/components/data/import/ImportFilesContent.tsx index d38cee9496152..606f1ee22d712 100644 --- a/opencti-platform/opencti-front/src/private/components/data/import/ImportFilesContent.tsx +++ b/opencti-platform/opencti-front/src/private/components/data/import/ImportFilesContent.tsx @@ -87,6 +87,7 @@ const importWorkbenchLinesFragment = graphql` @connection(key: "Pagination_global_importFiles") { edges { node { + id ...ImportFilesContentFileLine_file } } diff --git a/opencti-platform/opencti-front/src/private/components/data/import/ImportWorkbenchesContent.tsx b/opencti-platform/opencti-front/src/private/components/data/import/ImportWorkbenchesContent.tsx index 3dd3b687ec355..3db02d75fde98 100644 --- a/opencti-platform/opencti-front/src/private/components/data/import/ImportWorkbenchesContent.tsx +++ b/opencti-platform/opencti-front/src/private/components/data/import/ImportWorkbenchesContent.tsx @@ -80,6 +80,7 @@ const importWorkbenchLinesFragment = graphql` @connection(key: "Pagination_global_pendingFiles") { edges { node { + id ...ImportWorkbenchesContentFileLine_file } } diff --git a/opencti-platform/opencti-front/src/private/components/techniques/AttackPatterns.tsx b/opencti-platform/opencti-front/src/private/components/techniques/AttackPatterns.tsx index 8c3d31c45964d..aa7506baf5a72 100644 --- a/opencti-platform/opencti-front/src/private/components/techniques/AttackPatterns.tsx +++ b/opencti-platform/opencti-front/src/private/components/techniques/AttackPatterns.tsx @@ -81,6 +81,7 @@ const attackPatternsLinesFragment = graphql` ) @connection(key: "Pagination_attackPatterns") { edges { node { + id name ...AttackPatternsLine_node } diff --git a/opencti-platform/opencti-front/src/private/components/techniques/CoursesOfAction.tsx b/opencti-platform/opencti-front/src/private/components/techniques/CoursesOfAction.tsx index 0fa14f4c66887..283c5e37d8243 100644 --- a/opencti-platform/opencti-front/src/private/components/techniques/CoursesOfAction.tsx +++ b/opencti-platform/opencti-front/src/private/components/techniques/CoursesOfAction.tsx @@ -83,6 +83,7 @@ export const coursesOfActionLinesFragment = graphql` ) @connection(key: "Pagination_coursesOfAction") { edges { node { + id name ...CoursesOfActionLine_node } diff --git a/opencti-platform/opencti-front/src/private/components/techniques/DataComponents.tsx b/opencti-platform/opencti-front/src/private/components/techniques/DataComponents.tsx index 006fbc9f2d9ec..8c7bf5a9dc43c 100644 --- a/opencti-platform/opencti-front/src/private/components/techniques/DataComponents.tsx +++ b/opencti-platform/opencti-front/src/private/components/techniques/DataComponents.tsx @@ -82,6 +82,7 @@ const dataComponentsLinesFragment = graphql` ) @connection(key: "Pagination_dataComponents") { edges { node { + id ...DataComponentsLine_node } } diff --git a/opencti-platform/opencti-front/src/private/components/workspaces/dashboards/public_dashboards/PublicDashboards.tsx b/opencti-platform/opencti-front/src/private/components/workspaces/dashboards/public_dashboards/PublicDashboards.tsx index 163db4e780d61..3140be67b91a2 100644 --- a/opencti-platform/opencti-front/src/private/components/workspaces/dashboards/public_dashboards/PublicDashboards.tsx +++ b/opencti-platform/opencti-front/src/private/components/workspaces/dashboards/public_dashboards/PublicDashboards.tsx @@ -66,6 +66,7 @@ export const publicDashboardsFragment = graphql` ) @connection(key: "Pagination_publicDashboards") { edges { node { + id ...PublicDashboards_PublicDashboard } }