mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Graphite: makes query annotations work again (#24556)
This commit is contained in:
@@ -225,8 +225,8 @@ export class GraphiteDatasource extends DataSourceApi<GraphiteQuery, GraphiteOpt
|
||||
const target = result.data[i];
|
||||
|
||||
for (let y = 0; y < target.length; y++) {
|
||||
const time = target.fields[1].values.get(y);
|
||||
const value = target.fields[0].values.get(y);
|
||||
const time = target.fields[0].values.get(y);
|
||||
const value = target.fields[1].values.get(y);
|
||||
|
||||
if (!value) {
|
||||
continue;
|
||||
|
||||
Reference in New Issue
Block a user