mirror of
https://github.com/grafana/grafana.git
synced 2025-01-26 16:27:02 -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,
|
||||
range: this.range,
|
||||
})
|
||||
.then(annotations => {
|
||||
return { data: annotations };
|
||||
.then((anno: any) => {
|
||||
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