Merge pull request #1779 from jlmitch5/updateDefaultAnsibleEnvironmentText

change default option text for ansible environment dropdown to Default Environment
This commit is contained in:
John Mitchell 2018-05-15 11:36:43 -04:00 committed by GitHub
commit fd0b439ee6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@ export default ['NotificationsList', 'i18n',
},
custom_virtualenv: {
label: i18n._('Ansible Environment'),
defaultText: i18n._('Select Ansible Environment'),
defaultText: i18n._('Default Environment'),
type: 'select',
ngOptions: 'venv for venv in custom_virtualenvs_options track by venv',
awPopOver: "<p>" + i18n._("Select the custom Python virtual environment for this organization to run on.") + "</p>",

View File

@ -206,7 +206,7 @@ export default ['i18n', 'NotificationsList', 'TemplateList',
custom_virtualenv: {
label: i18n._('Ansible Environment'),
type: 'select',
defaultText: i18n._('Select Ansible Environment'),
defaultText: i18n._('Default Environment'),
ngOptions: 'venv for venv in custom_virtualenvs_options track by venv',
awPopOver: "<p>" + i18n._("Select the custom Python virtual environment for this project to run on.") + "</p>",
dataTitle: i18n._('Ansible Environment'),

View File

@ -234,7 +234,7 @@ function(NotificationsList, i18n) {
custom_virtualenv: {
label: i18n._('Ansible Environment'),
type: 'select',
defaultText: i18n._('Select Ansible Environment'),
defaultText: i18n._('Default Environment'),
ngOptions: 'venv for venv in custom_virtualenvs_options track by venv',
awPopOver: "<p>" + i18n._("Select the custom Python virtual environment for this job template to run on.") + "</p>",
dataTitle: i18n._('Ansible Environment'),