From eb792490d66d393cc190c48cc7a0406a8f296268 Mon Sep 17 00:00:00 2001 From: Alexander Zobnin Date: Thu, 18 Jun 2020 12:28:41 +0300 Subject: [PATCH] Types: add reportGrid to the feature toggles (#25689) * Types: add reportGrid to the feature toggles * Chore: add reportGrid to the default config --- packages/grafana-data/src/types/config.ts | 1 + packages/grafana-runtime/src/config.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/packages/grafana-data/src/types/config.ts b/packages/grafana-data/src/types/config.ts index 4c44dc3eac3..3b8474599ad 100644 --- a/packages/grafana-data/src/types/config.ts +++ b/packages/grafana-data/src/types/config.ts @@ -40,6 +40,7 @@ export interface FeatureToggles { */ meta: boolean; datasourceInsights: boolean; + reportGrid: boolean; } /** diff --git a/packages/grafana-runtime/src/config.ts b/packages/grafana-runtime/src/config.ts index fd5a65831bb..90bf837d516 100644 --- a/packages/grafana-runtime/src/config.ts +++ b/packages/grafana-runtime/src/config.ts @@ -54,6 +54,7 @@ export class GrafanaBootConfig implements GrafanaConfig { newEdit: false, meta: false, datasourceInsights: false, + reportGrid: false, }; licenseInfo: LicenseInfo = {} as LicenseInfo; rendererAvailable = false;