mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
New panel editor (behind feature toggle) (#21097)
* WIP: initial 10min poc of new panel editor * added queries * PanelEditor: copy panel model when going into edit mode * Added option
This commit is contained in:
@@ -15,6 +15,7 @@ interface FeatureToggles {
|
||||
transformations: boolean;
|
||||
inspect: boolean;
|
||||
expressions: boolean;
|
||||
newEdit: boolean;
|
||||
}
|
||||
export class GrafanaBootConfig {
|
||||
datasources: { [str: string]: DataSourceInstanceSettings } = {};
|
||||
@@ -51,6 +52,7 @@ export class GrafanaBootConfig {
|
||||
transformations: false,
|
||||
inspect: false,
|
||||
expressions: false,
|
||||
newEdit: false,
|
||||
};
|
||||
|
||||
constructor(options: GrafanaBootConfig) {
|
||||
|
||||
Reference in New Issue
Block a user