summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2018-06-06 05:51:15 -0500
committerMike Greiling <mike@pixelcog.com>2018-06-06 05:51:15 -0500
commit41c17bdb572b9c2875facba5ff6d003e4cb6f23b (patch)
treebb1e82d92400397185413cf6d180383973a8a058
parentc604c43782c5f2ac915f934d566f0502ae41f6d4 (diff)
downloadgitlab-ce-41c17bdb572b9c2875facba5ff6d003e4cb6f23b.tar.gz
revert accidental commit
-rw-r--r--app/views/projects/settings/ci_cd/show.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/settings/ci_cd/show.html.haml b/app/views/projects/settings/ci_cd/show.html.haml
index 0b52cf6a4b4..ed17bd4f7dc 100644
--- a/app/views/projects/settings/ci_cd/show.html.haml
+++ b/app/views/projects/settings/ci_cd/show.html.haml
@@ -16,12 +16,12 @@
.settings-content
= render 'form'
-%section.settings#autodevops-settings.no-animate{ class: ('expanded' if true) }
+%section.settings#autodevops-settings.no-animate{ class: ('expanded' if expanded) }
.settings-header
%h4
= s_('CICD|Auto DevOps')
%button.btn.btn-default.js-settings-toggle{ type: 'button' }
- = true ? _('Collapse') : _('Expand')
+ = expanded ? _('Collapse') : _('Expand')
%p
= s_('CICD|Auto DevOps will automatically build, test, and deploy your application based on a predefined Continuous Integration and Delivery configuration.')
= link_to s_('CICD|Learn more about Auto DevOps'), help_page_path('topics/autodevops/index.md')