From b3a521c33bfefcd0508b8797ec7af9efba634617 Mon Sep 17 00:00:00 2001 From: Omkar Zade Date: Wed, 11 Mar 2026 13:24:48 +0100 Subject: [PATCH 1/2] add documentation on frontend statusBanner config --- Development/v4.x/frontend/configuration.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Development/v4.x/frontend/configuration.md b/Development/v4.x/frontend/configuration.md index 30c08132..91de221f 100644 --- a/Development/v4.x/frontend/configuration.md +++ b/Development/v4.x/frontend/configuration.md @@ -127,8 +127,10 @@ frontend/src/assets/config.json: "shareEnabled": true, // Enable/disable workflow for sharing Datasets with other users using their email address. "shoppingCartEnabled": true, // Enable/disable the Dataset cart used for bulk actions. "shoppingCartOnHeader": true, // Toggle Dataset cart placement, either on header or to the left on the Datasets Dashboard. - "tableSciDataEnabled": true // Enable/disable Scientific Metadata table view on details pages. If disabled, Scientific Metadata is displayed as raw JSON. - "supportEmail": "scicat-help@facility.eu" // Optional. If set, adds a card in /help page with support email in the message. + "tableSciDataEnabled": true, // Enable/disable Scientific Metadata table view on details pages. If disabled, Scientific Metadata is displayed as raw JSON. + "supportEmail": "scicat-help@facility.eu", // Optional. If set, adds a card in /help page with support email in the message. + "statusBannerMessage": "Some SciCat update to be displayed on the dismissible banner", // Optional - statusBannerCode must be set for it to take effect + "statusBannerCode": "INFO" // Optional, "WARN" or "INFO" - affects the styling of status banner } ``` From 99d17de43b45ed4e1efd9fd110e61fc2a7877853 Mon Sep 17 00:00:00 2001 From: Omkar Zade Date: Thu, 12 Mar 2026 11:16:52 +0100 Subject: [PATCH 2/2] Update configuration.md --- Development/v4.x/frontend/configuration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Development/v4.x/frontend/configuration.md b/Development/v4.x/frontend/configuration.md index 91de221f..2170a5a2 100644 --- a/Development/v4.x/frontend/configuration.md +++ b/Development/v4.x/frontend/configuration.md @@ -129,8 +129,8 @@ frontend/src/assets/config.json: "shoppingCartOnHeader": true, // Toggle Dataset cart placement, either on header or to the left on the Datasets Dashboard. "tableSciDataEnabled": true, // Enable/disable Scientific Metadata table view on details pages. If disabled, Scientific Metadata is displayed as raw JSON. "supportEmail": "scicat-help@facility.eu", // Optional. If set, adds a card in /help page with support email in the message. - "statusBannerMessage": "Some SciCat update to be displayed on the dismissible banner", // Optional - statusBannerCode must be set for it to take effect - "statusBannerCode": "INFO" // Optional, "WARN" or "INFO" - affects the styling of status banner + "statusBannerMessage": "Some SciCat update to be displayed on the dismissible banner", // Optional + "statusBannerCode": "INFO" // Optional, "WARN" or "INFO" - affects the styling of statusBannerMessage, defaults to INFO } ```