diff --git a/awx/ui/client/features/output/details.component.js b/awx/ui/client/features/output/details.component.js index 13358e9abb..67f3bee4a0 100644 --- a/awx/ui/client/features/output/details.component.js +++ b/awx/ui/client/features/output/details.component.js @@ -242,9 +242,10 @@ function getHostLimitErrorDetails () { } const label = strings.get('labels.HOST_LIMIT_ERROR'); + const tooltip = strings.get('tooltips.HOST_LIMIT'); const value = resource.model.get('org_host_limit_error'); - return { label, value }; + return { tooltip, label, value }; } function getLaunchedByDetails () { diff --git a/awx/ui/client/features/output/details.partial.html b/awx/ui/client/features/output/details.partial.html index 9d5b621864..b2faddea97 100644 --- a/awx/ui/client/features/output/details.partial.html +++ b/awx/ui/client/features/output/details.partial.html @@ -83,7 +83,19 @@
- +
{{ vm.hostLimitError.value }}
diff --git a/awx/ui/client/features/output/output.strings.js b/awx/ui/client/features/output/output.strings.js index 7ab92c7d84..982070837e 100644 --- a/awx/ui/client/features/output/output.strings.js +++ b/awx/ui/client/features/output/output.strings.js @@ -22,6 +22,7 @@ function OutputStrings (BaseString) { CREDENTIAL: t.s('View the Credential'), EXPAND_OUTPUT: t.s('Expand Output'), EXTRA_VARS: t.s('Read-only view of extra variables added to the job template'), + HOST_LIMIT: t.s('When this field is true, the job\'s inventory belongs to an organization that has exceeded it\'s limit of hosts as defined by the system administrator.'), INVENTORY: t.s('View the Inventory'), INVENTORY_SCM: t.s('View the Project'), INVENTORY_SCM_JOB: t.s('View Project checkout results'),