QueryEditors: Refactoring & rewriting out dependency on PanelModel (#29419)

* Removing PanelModel usage from query rows

* More work removing dependency on panel model

* Before big change to query options

* Query options now have no dependency on panel model

* Test page is working

* Shared query now works again

* Rename component

* fix after merge

* Fixed issue with old angular editors
This commit is contained in:
Torkel Ödegaard
2020-12-02 15:42:54 +01:00
committed by GitHub
parent b8fec209a9
commit 068fef8c7c
11 changed files with 409 additions and 241 deletions

View File

@@ -132,8 +132,8 @@ export class PanelModel implements DataConfigSource {
};
fieldConfig: FieldConfigSource;
maxDataPoints?: number;
interval?: string;
maxDataPoints?: number | null;
interval?: string | null;
description?: string;
links?: DataLink[];
transparent: boolean;