Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/shared/labels/_form.html.haml')
-rw-r--r--app/views/shared/labels/_form.html.haml9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/views/shared/labels/_form.html.haml b/app/views/shared/labels/_form.html.haml
index 899b2ed832e..53fbe3dac03 100644
--- a/app/views/shared/labels/_form.html.haml
+++ b/app/views/shared/labels/_form.html.haml
@@ -1,3 +1,5 @@
+- show_lock_on_merge = local_assigns.fetch(:show_lock_on_merge, false)
+
= gitlab_ui_form_for @label, as: :label, url: url, html: { class: 'label-form js-quick-submit js-requires-input' } do |f|
= form_errors(@label)
@@ -21,6 +23,13 @@
.form-text.text-muted
= _('Select a color from the color picker or from the presets below.')
= render_suggested_colors
+ - if show_lock_on_merge
+ .form-group.row
+ .col-12
+ = f.gitlab_ui_checkbox_component :lock_on_merge,
+ _('Lock label after a merge request is merged'),
+ help_text: label_lock_on_merge_help_text,
+ checkbox_options: { disabled: @label.lock_on_merge }
.gl-display-flex.gl-justify-content-space-between
%div
- if @label.persisted?