Skip to content

Commit 1631b5b

Browse files
committed
add headers in dataset listing page under entities
1 parent 7fa4fab commit 1631b5b

File tree

1 file changed

+3
-3
lines changed
  • app/[locale]/dashboard/[entityType]/[entitySlug]/dataset

1 file changed

+3
-3
lines changed

app/[locale]/dashboard/[entityType]/[entitySlug]/dataset/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export default function DatasetPage({
7979
GraphQL(
8080
allDatasetsQueryDoc,
8181
{
82-
// Entity Headers if present
82+
[params.entityType]: params.entitySlug,
8383
},
8484
{
8585
filters: {
@@ -110,7 +110,7 @@ export default function DatasetPage({
110110
GraphQL(
111111
deleteDatasetMutationDoc,
112112
{
113-
// Entity Headers if present
113+
[params.entityType]: params.entitySlug,
114114
},
115115
{ datasetId: data.datasetId }
116116
),
@@ -131,7 +131,7 @@ export default function DatasetPage({
131131
GraphQL(
132132
createDatasetMutationDoc,
133133
{
134-
// Entity Headers if present
134+
[params.entityType]: params.entitySlug,
135135
},
136136
[]
137137
),

0 commit comments

Comments
 (0)