Skip to content

Commit

Permalink
Fixes #34428 - Update ContentCredentials controller in AngularJs for …
Browse files Browse the repository at this point in the history
…bookmarks
  • Loading branch information
chris1984 committed Feb 14, 2022
1 parent 0eb3e33 commit f7f4eab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ angular.module('Bastion.content-credentials').controller('ContentCredentialsCont
};

var nutupane = new Nutupane(ContentCredential, params);
$scope.controllerName = 'katello_gpg_keys';
$scope.controllerName = 'katello_content_credentials';
$scope.table = nutupane.table;
$scope.panel = {loading: false};
$scope.removeRow = nutupane.removeRow;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
var nutupane = new Nutupane(ContentCredential, {
id: $scope.$stateParams.contentCredentialId
}, 'products');
$scope.controllerName = 'katello_gpg_keys';
$scope.controllerName = 'katello_content_credentials';
nutupane.primaryOnly = true;

$scope.panel = $scope.panel || {error: false, loading: false};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
var nutupane = new Nutupane(ContentCredential, {
id: $scope.$stateParams.contentCredentialId
}, 'repositories');
$scope.controllerName = 'katello_gpg_keys';
$scope.controllerName = 'katello_content_credentials';
nutupane.primaryOnly = true;

$scope.panel = $scope.panel || {error: false, loading: false};
Expand Down

0 comments on commit f7f4eab

Please sign in to comment.