We only add the build to the build list if present, not if missing
This commit is contained in:
parent
58685f02cd
commit
2e4893dce0
1 changed files with 1 additions and 1 deletions
|
@ -260,7 +260,7 @@ angular.module('quay').directive('repoPanelBuilds', function () {
|
||||||
};
|
};
|
||||||
|
|
||||||
$scope.handleBuildStarted = function(build) {
|
$scope.handleBuildStarted = function(build) {
|
||||||
if (!$scope.allBuilds) {
|
if ($scope.allBuilds) {
|
||||||
$scope.allBuilds.push(build);
|
$scope.allBuilds.push(build);
|
||||||
}
|
}
|
||||||
updateBuilds();
|
updateBuilds();
|
||||||
|
|
Reference in a new issue