зеркало из https://github.com/mozilla/treeherder.git
Bug 1261176 - Fix a minor bug in clientside compare
This commit is contained in:
Родитель
93cadc3e63
Коммит
6b5aecb050
|
@ -272,12 +272,12 @@ perf.controller('CompareResultsCtrl', [
|
|||
function(newSeriesList) {
|
||||
$scope.platformList = _.union(
|
||||
$scope.platformList,
|
||||
_.uniq(newSeriesList, 'platform'));
|
||||
_.uniq(_.map(newSeriesList, 'platform')));
|
||||
$scope.testList = _.union(
|
||||
$scope.testList,
|
||||
_.uniq(newSeriesList, 'name'));
|
||||
_.uniq(_.map(newSeriesList, 'name')));
|
||||
return PhCompare.getResultsMap($scope.newProject.name,
|
||||
newSeriesData.seriesList,
|
||||
newSeriesList,
|
||||
[$scope.newResultSet.id]);
|
||||
}).then(function(resultMaps) {
|
||||
var newResultsMap = resultMaps[$scope.newResultSet.id];
|
||||
|
|
Загрузка…
Ссылка в новой задаче