Runtime: Make dashboardSceneSolo flag updatable at runtime (#92290)

Runtime: Make dashboardSceneSolo flag updatable at runtimeuntime
This commit is contained in:
Agnès Toulet 2024-08-26 17:12:01 +02:00 committed by GitHub
parent 32f06c6d9c
commit 79abc0cf1d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -269,7 +269,7 @@ function overrideFeatureTogglesFromUrl(config: GrafanaBootConfig) {
// Although most flags can not be changed from the URL in production,
// some of them are safe (and useful!) to change dynamically from the browser URL
const safeRuntimeFeatureFlags = new Set(['queryServiceFromUI']);
const safeRuntimeFeatureFlags = new Set(['queryServiceFromUI', 'dashboardSceneSolo']);
const params = new URLSearchParams(window.location.search);
params.forEach((value, key) => {