Commit 54fafb3a by Torkel Ödegaard

Graph: fix to typeahead for series overrides, (bug introduced in recent commit), Fixes #1046

parent 01bd6620
......@@ -53,8 +53,8 @@ define([
};
$scope.getSeriesNames = function() {
return _.map($scope.legend, function(info) {
return info.alias;
return _.map($scope.seriesList, function(series) {
return series.alias;
});
};
......
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