Commit 32cdab4c by Marcus Efraimsson Committed by GitHub

explore: make sure datasource is added to target (#17116)

Fixes a regression introduced in #16959 which removed datasource 
property from changed query for angular query editors having the 
result of loading explore URL's without datasource loaded the 
default query in query editor and Explore.

Ref #16808
parent 756da8a1
...@@ -35,7 +35,7 @@ export default class QueryEditor extends PureComponent<QueryEditorProps, any> { ...@@ -35,7 +35,7 @@ export default class QueryEditor extends PureComponent<QueryEditorProps, any> {
const loader = getAngularLoader(); const loader = getAngularLoader();
const template = '<plugin-component type="query-ctrl"> </plugin-component>'; const template = '<plugin-component type="query-ctrl"> </plugin-component>';
const target = { ...initialQuery }; const target = { datasource: datasource.name, ...initialQuery };
const scopeProps = { const scopeProps = {
ctrl: { ctrl: {
datasource, datasource,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment