Commit cf751c25 by Torkel Ödegaard

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

parent ea5cb0d0
......@@ -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)
......
......@@ -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++) {
......
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