Merge pull request #10278 from nixocio/ui_de_explanation

Update message about Default Execution Environment

Update message about Default Execution Environment
Organizations

Projects

See: #9715

Reviewed-by: Bill Nottingham <None>
Reviewed-by: Kersom <None>
This commit is contained in:
softwarefactory-project-zuul[bot] 2021-05-26 21:55:40 +00:00 committed by GitHub
commit da13196e59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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}