Commit 5054e841 by Johannes Schill Committed by GitHub

Merge pull request #15551 from grafana/15281-dashboard2explore

fix: Filter out values not supported by Explore yet #15281
parents 53528760 6f9edf4a
......@@ -396,6 +396,10 @@ export class PrometheusDatasource implements DataSourceApi<PromQuery> {
const expandedQueries = queries.map(query => ({
...query,
expr: this.templateSrv.replace(query.expr, {}, this.interpolateQueryExpr),
// null out values we don't support in Explore yet
legendFormat: null,
step: null,
}));
state = {
...state,
......
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