From 2e3844decbc535b31d616639a32677a19c6e4645 Mon Sep 17 00:00:00 2001 From: Jared Tabor Date: Fri, 26 Jun 2015 12:34:05 -0400 Subject: [PATCH] changing select type from checkbox to radio button for the selection of Team in the credential add/edit form page --- awx/ui/client/src/controllers/Credentials.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/awx/ui/client/src/controllers/Credentials.js b/awx/ui/client/src/controllers/Credentials.js index 34233b9a98..73ae12258f 100644 --- a/awx/ui/client/src/controllers/Credentials.js +++ b/awx/ui/client/src/controllers/Credentials.js @@ -3,7 +3,7 @@ * * All Rights Reserved *************************************************/ - + /** * @ngdoc function * @name controllers.function:Credentials @@ -176,6 +176,7 @@ export function CredentialsAdd($scope, $rootScope, $compile, $location, $log, $r current_item: (!Empty($routeParams.team_id)) ? $routeParams.team_id : null, list: TeamList, field: 'team', + input_type: 'radio', autopopulateLookup: false }); @@ -347,6 +348,7 @@ export function CredentialsEdit($scope, $rootScope, $compile, $location, $log, $ form: form, current_item: (!Empty($scope.team_id)) ? $scope.team_id : null, list: TeamList, + input_type: 'radio', field: 'team' });