make ui exclude showing empty resultsets

This commit is contained in:
Cameron Dawson 2013-10-02 17:04:09 -07:00
Родитель 50ee8914a0
Коммит 7814252dc2
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -39,7 +39,9 @@ treeherder.factory('thResultSets',
// get the resultsets for this repo
return {
getResultSets: function() {
return $http.get(thUrl.getProjectUrl("/resultset/"));
return $http.get(thUrl.getProjectUrl("/resultset/"),
{params: {exclude_empty: 1}}
);
}
}
}]);