mirror of
https://github.com/grafana/grafana.git
synced 2025-01-27 08:47:12 -06:00
TablePanel: fix annotations display (#17646)
This commit is contained in:
parent
bd08d8ce8e
commit
35e1524b02
@ -94,8 +94,12 @@ class TablePanelCtrl extends MetricsPanelCtrl {
|
|||||||
panel: this.panel,
|
panel: this.panel,
|
||||||
range: this.range,
|
range: this.range,
|
||||||
})
|
})
|
||||||
.then(annotations => {
|
.then((anno: any) => {
|
||||||
return { data: annotations };
|
this.loading = false;
|
||||||
|
this.dataRaw = anno;
|
||||||
|
this.pageIndex = 0;
|
||||||
|
this.render();
|
||||||
|
return { data: this.dataRaw }; // Not used
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user