Commit 35e1524b by Ryan McKinley Committed by GitHub

TablePanel: fix annotations display (#17646)

parent bd08d8ce
......@@ -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
});
}
......
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