Graph: fix to typeahead for series overrides, (bug introduced in recent commit), Fixes #1046
This commit is contained in:
@@ -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;
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user