Fix bug introduced with the dialog change for github setup. We properly read the pull entity again.

This commit is contained in:
Joseph Schorr 2014-10-20 17:41:48 -04:00
parent 47be7cab7a
commit efeb0dc655

View file

@ -5204,8 +5204,8 @@ quayApp.directive('setupTriggerDialog', function () {
'config': $scope.trigger['config']
};
if ($scope.pullEntity) {
data['pull_robot'] = $scope.pullEntity['name'];
if ($scope.pullInfo['pull_entity']) {
data['pull_robot'] = $scope.pullInfo['pull_entity']['name'];
}
$scope.currentView = 'activating';