From 2e0597b13fcefb8ddf39aae95bbebfae7c32695f Mon Sep 17 00:00:00 2001 From: John Mitchell Date: Thu, 23 Feb 2017 15:14:52 -0500 Subject: [PATCH] fix permissions disabled tooltip wording --- awx/ui/client/src/controllers/Credentials.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/client/src/controllers/Credentials.js b/awx/ui/client/src/controllers/Credentials.js index 5ba7f71aeb..9f049e490b 100644 --- a/awx/ui/client/src/controllers/Credentials.js +++ b/awx/ui/client/src/controllers/Credentials.js @@ -343,7 +343,7 @@ export function CredentialsEdit($scope, $rootScope, $compile, $location, $log, $scope.$watch('organization', function(val) { if (val === undefined) { - $scope.permissionsTooltip = i18n._('Credentials are only shared within an organization. Assign credentials to an organization to delegate credential permissions. The organization cannot be edited after credentials are assigned.'); + $scope.permissionsTooltip = i18n._('Populate the organization field in the form below in order to set permissions.'); } else { $scope.permissionsTooltip = ''; }