diff options
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/toaster/toastergui/static/js/projectapp.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/js/projectapp.js b/bitbake/lib/toaster/toastergui/static/js/projectapp.js index 44e244d302..b2e65c5bb5 100644 --- a/bitbake/lib/toaster/toastergui/static/js/projectapp.js +++ b/bitbake/lib/toaster/toastergui/static/js/projectapp.js | |||
@@ -341,7 +341,7 @@ projectApp.controller('prjCtrl', function($scope, $modal, $http, $interval, $loc | |||
341 | var toDelete = []; | 341 | var toDelete = []; |
342 | // step 1 - delete entries not found | 342 | // step 1 - delete entries not found |
343 | $scope.builds.forEach(function (elem) { | 343 | $scope.builds.forEach(function (elem) { |
344 | if (-1 == _data.builds.findIndex(function (elemX) { return elemX.id == elem.id && elemX.status == elem.status; })) { | 344 | if (-1 == _data.builds.findIndex(function (elemX) { return elemX.id == elem.id; })) { |
345 | toDelete.push(elem); | 345 | toDelete.push(elem); |
346 | } | 346 | } |
347 | }); | 347 | }); |