Skip to content

Commit

Permalink
Bug 1161249 - Fix eslint errors
Browse files Browse the repository at this point in the history
A bunch of extra checks were turned on since this was last updated,
accidentally missed before pushing.
  • Loading branch information
wlach committed Nov 9, 2015
1 parent 3f96dc6 commit fd93218
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions ui/plugins/controller.js
Expand Up @@ -158,12 +158,11 @@ treeherder.controller('PluginCtrl', [
});
return $http.get(thUrl.getProjectUrl(url, $scope.repoName)).then(
function(response) {
_.map(response.data, function(serie, key) {
serie['signature'] = key;
seriesList.push(serie);
})
}
);
_.map(response.data, function(series, key) {
series['signature'] = key;
seriesList.push(series);
});
});
})).then(function(){
var allSubtestSignatures = _.flatten(_.map(seriesList, function(series) {
return series.subtest_signatures ? series.subtest_signatures : [];
Expand Down

0 comments on commit fd93218

Please sign in to comment.