Commit 6eea09fd authored by Mayra Cabrera's avatar Mayra Cabrera

Fixes Auto DevOps Domain title on admin settings

Changes "Auto devops" to "Auto DevOps" on CI/CD admin settings
parent 1b3affaf
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
= s_('CICD|The Auto DevOps pipeline will run if no alternative CI configuration file is found.') = s_('CICD|The Auto DevOps pipeline will run if no alternative CI configuration file is found.')
= link_to _('More information'), help_page_path('topics/autodevops/index.md'), target: '_blank' = link_to _('More information'), help_page_path('topics/autodevops/index.md'), target: '_blank'
.form-group .form-group
= f.label :auto_devops_domain, class: 'label-bold' = f.label :auto_devops_domain, s_('AdminSettings|Auto DevOps domain'), class: 'label-bold'
= f.text_field :auto_devops_domain, class: 'form-control', placeholder: 'domain.com' = f.text_field :auto_devops_domain, class: 'form-control', placeholder: 'domain.com'
.form-text.text-muted .form-text.text-muted
= s_("AdminSettings|Specify a domain to use by default for every project's Auto Review Apps and Auto Deploy stages.") = s_("AdminSettings|Specify a domain to use by default for every project's Auto Review Apps and Auto Deploy stages.")
......
---
title: Fixes Auto DevOps title on CI/CD admin settings
merge_request: 24249
author:
type: other
...@@ -450,6 +450,9 @@ msgstr "" ...@@ -450,6 +450,9 @@ msgstr ""
msgid "AdminProjects|Delete project" msgid "AdminProjects|Delete project"
msgstr "" msgstr ""
msgid "AdminSettings|Auto DevOps domain"
msgstr ""
msgid "AdminSettings|Environment variables are protected by default" msgid "AdminSettings|Environment variables are protected by default"
msgstr "" msgstr ""
......
...@@ -238,7 +238,7 @@ describe 'Admin updates settings' do ...@@ -238,7 +238,7 @@ describe 'Admin updates settings' do
page.within('.as-ci-cd') do page.within('.as-ci-cd') do
check 'Default to Auto DevOps pipeline for all projects' check 'Default to Auto DevOps pipeline for all projects'
fill_in 'Auto devops domain', with: 'domain.com' fill_in 'application_setting_auto_devops_domain', with: 'domain.com'
click_button 'Save changes' click_button 'Save changes'
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment