Skip to content

Commit

Permalink
[frontend] Fix shift select for some data tables (#7906)
Browse files Browse the repository at this point in the history
  • Loading branch information
SouadHadjiat authored and Archidoit committed Sep 10, 2024
1 parent 962c8e1 commit 19c5393
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ const externalReferencesLinesFragment = graphql`
) @connection(key: "Pagination_externalReferences") {
edges {
node {
id
...ExternalReferencesLine_node
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ const tasksLinesFragment = graphql`
) @connection(key: "Pagination_tasks__tasks") {
edges {
node {
id
...TasksLine_node
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ const importWorkbenchLinesFragment = graphql`
@connection(key: "Pagination_global_importFiles") {
edges {
node {
id
...ImportFilesContentFileLine_file
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ const importWorkbenchLinesFragment = graphql`
@connection(key: "Pagination_global_pendingFiles") {
edges {
node {
id
...ImportWorkbenchesContentFileLine_file
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ const attackPatternsLinesFragment = graphql`
) @connection(key: "Pagination_attackPatterns") {
edges {
node {
id
name
...AttackPatternsLine_node
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ export const coursesOfActionLinesFragment = graphql`
) @connection(key: "Pagination_coursesOfAction") {
edges {
node {
id
name
...CoursesOfActionLine_node
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ const dataComponentsLinesFragment = graphql`
) @connection(key: "Pagination_dataComponents") {
edges {
node {
id
...DataComponentsLine_node
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ export const publicDashboardsFragment = graphql`
) @connection(key: "Pagination_publicDashboards") {
edges {
node {
id
...PublicDashboards_PublicDashboard
}
}
Expand Down

0 comments on commit 19c5393

Please sign in to comment.