From 5761021f7ef3b50a3b17426c0650b70a3856d0b6 Mon Sep 17 00:00:00 2001 From: John Mitchell Date: Wed, 10 Aug 2016 14:50:03 -0400 Subject: [PATCH] fix duplication of credential kind options --- awx/ui/client/src/controllers/Credentials.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/awx/ui/client/src/controllers/Credentials.js b/awx/ui/client/src/controllers/Credentials.js index 7637a7a229..49150e22c9 100644 --- a/awx/ui/client/src/controllers/Credentials.js +++ b/awx/ui/client/src/controllers/Credentials.js @@ -77,15 +77,6 @@ export function CredentialsList($scope, $rootScope, $location, $log, $scope.search(list.iterator); }); - // Load the list of options for Kind - GetChoices({ - scope: $scope, - url: defaultUrl, - field: 'kind', - variable: 'credential_kind_options', - callback: 'choicesReadyCredential' - }); - $scope.addCredential = function () { $state.transitionTo('credentials.add'); };