From efeb0dc655b0c23471de20b4efc970e9c9407b3e Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Mon, 20 Oct 2014 17:41:48 -0400 Subject: [PATCH] Fix bug introduced with the dialog change for github setup. We properly read the pull entity again. --- static/js/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/js/app.js b/static/js/app.js index 7ea682d1c..f7d3bbcba 100644 --- a/static/js/app.js +++ b/static/js/app.js @@ -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';