Fix entering of docker file folders manually, and show the linked docker file in the build trigger view
This commit is contained in:
parent
ef02e769fb
commit
def56c971c
4 changed files with 13 additions and 5 deletions
|
@ -2553,7 +2553,6 @@ quayApp.directive('dropdownSelect', function ($compile) {
|
|||
restrict: 'C',
|
||||
scope: {
|
||||
'selectedItem': '=selectedItem',
|
||||
'enteredText': '=enteredText',
|
||||
'placeholder': '=placeholder',
|
||||
'lookaheadItems': '=lookaheadItems',
|
||||
'handleItemSelected': '&handleItemSelected',
|
||||
|
@ -2692,6 +2691,10 @@ quayApp.directive('triggerSetupGithub', function () {
|
|||
$scope.setupReady = false;
|
||||
$scope.loading = true;
|
||||
|
||||
$scope.handleLocationInput = function(location) {
|
||||
$scope.trigger['config']['subdir'] = location || '';
|
||||
};
|
||||
|
||||
$scope.setLocation = function(location) {
|
||||
$scope.currentLocation = location;
|
||||
$scope.trigger['config']['subdir'] = location || '';
|
||||
|
|
Reference in a new issue