diff --git a/packages/grafana-runtime/src/config.ts b/packages/grafana-runtime/src/config.ts index 9f9d3ccc4c1..da9f3db87ce 100644 --- a/packages/grafana-runtime/src/config.ts +++ b/packages/grafana-runtime/src/config.ts @@ -17,6 +17,7 @@ interface FeatureToggles { inspect: boolean; expressions: boolean; newEdit: boolean; + meta: boolean; } interface LicenseInfo { @@ -63,6 +64,7 @@ export class GrafanaBootConfig { inspect: false, expressions: false, newEdit: false, + meta: false, }; licenseInfo: LicenseInfo = {} as LicenseInfo;