Types: add reportGrid to the feature toggles (#25689)

* Types: add reportGrid to the feature toggles

* Chore: add reportGrid to the default config
This commit is contained in:
Alexander Zobnin 2020-06-18 12:28:41 +03:00 committed by GitHub
parent 4853770db3
commit eb792490d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -40,6 +40,7 @@ export interface FeatureToggles {
*/ */
meta: boolean; meta: boolean;
datasourceInsights: boolean; datasourceInsights: boolean;
reportGrid: boolean;
} }
/** /**

View File

@ -54,6 +54,7 @@ export class GrafanaBootConfig implements GrafanaConfig {
newEdit: false, newEdit: false,
meta: false, meta: false,
datasourceInsights: false, datasourceInsights: false,
reportGrid: false,
}; };
licenseInfo: LicenseInfo = {} as LicenseInfo; licenseInfo: LicenseInfo = {} as LicenseInfo;
rendererAvailable = false; rendererAvailable = false;