Fix bug introduced with the dialog change for github setup. We properly read the pull entity again.
This commit is contained in:
parent
47be7cab7a
commit
efeb0dc655
1 changed files with 2 additions and 2 deletions
|
@ -5204,8 +5204,8 @@ quayApp.directive('setupTriggerDialog', function () {
|
||||||
'config': $scope.trigger['config']
|
'config': $scope.trigger['config']
|
||||||
};
|
};
|
||||||
|
|
||||||
if ($scope.pullEntity) {
|
if ($scope.pullInfo['pull_entity']) {
|
||||||
data['pull_robot'] = $scope.pullEntity['name'];
|
data['pull_robot'] = $scope.pullInfo['pull_entity']['name'];
|
||||||
}
|
}
|
||||||
|
|
||||||
$scope.currentView = 'activating';
|
$scope.currentView = 'activating';
|
||||||
|
|
Reference in a new issue