fix(graph): fixed order of graph tooltip when sort order was none, fixes #6648

This commit is contained in:
Torkel Ödegaard 2016-11-23 17:06:58 +01:00
parent ea5cb0d076
commit cf751c256b
2 changed files with 1 additions and 4 deletions

View File

@ -2,6 +2,7 @@
### Bugfixes
* **Server-side rendering**: Fixed address used when rendering panel via phantomjs and using non default http_addr config [#6660](https://github.com/grafana/grafana/issues/6660)
* **Graph panel**: Fixed graph panel tooltip sort order issue [#6648](https://github.com/grafana/grafana/issues/6648)
# 4.0-beta2 (2016-11-21)

View File

@ -181,10 +181,6 @@ function ($) {
seriesHoverInfo.sort(function(a, b) {
return a.value - b.value;
});
} else {
seriesHoverInfo.sort(function(a, b) {
return a.yaxis - b.yaxis;
});
}
for (i = 0; i < seriesHoverInfo.length; i++) {