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