mirror of
https://github.com/grafana/grafana.git
synced 2025-07-31 01:32:10 +08:00

* Make dashboard data source query actually use DashboardDataSource * remove commented out bit * Always wrap SceneQueryRunner with SceneDataTransformer * Update Dashboard model compat wrapper tests * DashboardQueryEditor test * VizPanelManager tests update * transform save model to scene tests update * Betterer * PanelMenuBehavior test update * Few more bits * Prettier --------- Co-authored-by: Dominik Prokop <dominik.prokop@grafana.com>
7 lines
269 B
TypeScript
7 lines
269 B
TypeScript
import { DataSourcePlugin } from '@grafana/data';
|
|
|
|
import { DashboardQueryEditor } from './DashboardQueryEditor';
|
|
import { DashboardDatasource } from './datasource';
|
|
|
|
export const plugin = new DataSourcePlugin(DashboardDatasource).setQueryEditor(DashboardQueryEditor);
|