Update message about Default Execution Environment

Update message about Default Execution Environment

See: https://github.com/ansible/awx/issues/9715
This commit is contained in:
nixocio 2021-05-25 17:01:06 -04:00
parent 42dbd4ea73
commit 3e2affb08e
2 changed files with 2 additions and 2 deletions

View File

@ -93,7 +93,7 @@ function OrganizationFormFields({
onBlur={() => executionEnvironmentHelpers.setTouched()}
value={executionEnvironmentField.value}
onChange={value => executionEnvironmentHelpers.setValue(value)}
popoverContent={t`Select the default execution environment for this organization.`}
popoverContent={t`The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level.`}
globallyAvailable
organizationId={organizationId}
isDefaultEnvironment

View File

@ -193,7 +193,7 @@ function ProjectFormFields({
onBlur={() => executionEnvironmentHelpers.setTouched()}
value={executionEnvironmentField.value}
onChange={value => executionEnvironmentHelpers.setValue(value)}
popoverContent={t`Select the default execution environment for this project.`}
popoverContent={t`The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level.`}
tooltip={t`Select an organization before editing the default execution environment.`}
globallyAvailable
isDisabled={!organizationField.value}