From 56fe9b1b752678db60770764342a8c719913cf77 Mon Sep 17 00:00:00 2001 From: Omkar Zade Date: Thu, 11 Jun 2026 13:19:12 +0200 Subject: [PATCH] chore: add datasetRelationshipsEnabled frontend config key --- docs/frontend-config-guide/frontend-config.md | 1 + src/config/frontend.config.json | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/frontend-config-guide/frontend-config.md b/docs/frontend-config-guide/frontend-config.md index 727a0070c..de62d4929 100644 --- a/docs/frontend-config-guide/frontend-config.md +++ b/docs/frontend-config-guide/frontend-config.md @@ -18,6 +18,7 @@ This guide documents frontend configuration options that control various UI beha | `addDatasetEnabled` | boolean | `false` | Show/hide the "Create Dataset" button in the Datasets Dashboard. | | `archiveWorkflowEnabled` | boolean | `false` | Enable/disable the archive/retrieve workflow. | | `datasetReduceEnabled` | boolean | `true` | Show/hide the "Reduce" tab. | +| `datasetRelationshipsEnabled` | boolean | `true` | Show/hide the "Relationships" tab. | | `datasetJsonScientificMetadata` | boolean | `true` | Show/hide the "Scientific Metadata (JSON)" tab. | | `editDatasetEnabled` | boolean | `true` | Show/hide the "Edit" buttons in the Datasets Details page | | `editDatasetSampleEnabled` | boolean | `true` | **Deprecated** Enable/disable editing of which Sample a Dataset belongs to. | diff --git a/src/config/frontend.config.json b/src/config/frontend.config.json index 0d4093cdc..0e550b3e6 100644 --- a/src/config/frontend.config.json +++ b/src/config/frontend.config.json @@ -11,6 +11,7 @@ "allowConfigOverrides": true, "archiveWorkflowEnabled": false, "datasetReduceEnabled": true, + "datasetRelationshipsEnabled": true, "datasetJsonScientificMetadata": true, "editDatasetEnabled": true, "editDatasetSampleEnabled": true,