Graphite: makes query annotations work again (#24556)

This commit is contained in:
Hugo Häggmark
2020-05-12 08:33:45 +02:00
committed by GitHub
parent cb4266bae0
commit 7992f8bfbc

View File

@@ -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;