summaryrefslogtreecommitdiff
path: root/app/views/shared/labels
diff options
context:
space:
mode:
authorAleksandr Soborov <asoborov@gmail.com>2018-10-17 12:17:32 +0000
committerRémy Coutable <remy@rymai.me>2018-10-17 12:17:32 +0000
commita68b6315f194be52ca0a5c672458c489d3dc0e42 (patch)
tree4927e3de5b308f4b15c607939ba634044e0f20e1 /app/views/shared/labels
parentd32ac958ddb76290cf32759952907b1b67cfd440 (diff)
downloadgitlab-ce-a68b6315f194be52ca0a5c672458c489d3dc0e42.tar.gz
Extend Create New Merge Request test to also add a label
Diffstat (limited to 'app/views/shared/labels')
-rw-r--r--app/views/shared/labels/_form.html.haml8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/views/shared/labels/_form.html.haml b/app/views/shared/labels/_form.html.haml
index 335c34a4632..7619d0a2e9c 100644
--- a/app/views/shared/labels/_form.html.haml
+++ b/app/views/shared/labels/_form.html.haml
@@ -4,18 +4,18 @@
.form-group.row
= f.label :title, class: 'col-form-label col-sm-2'
.col-sm-10
- = f.text_field :title, class: "form-control", required: true, autofocus: true
+ = f.text_field :title, class: "form-control qa-label-title", required: true, autofocus: true
.form-group.row
= f.label :description, class: 'col-form-label col-sm-2'
.col-sm-10
- = f.text_field :description, class: "form-control js-quick-submit"
+ = f.text_field :description, class: "form-control js-quick-submit qa-label-description"
.form-group.row
= f.label :color, "Background color", class: 'col-form-label col-sm-2'
.col-sm-10
.input-group
.input-group-prepend
.input-group-text.label-color-preview &nbsp;
- = f.text_field :color, class: "form-control"
+ = f.text_field :color, class: "form-control qa-label-color"
.form-text.text-muted
Choose any color.
%br
@@ -30,5 +30,5 @@
- if @label.persisted?
= f.submit 'Save changes', class: 'btn btn-success js-save-button'
- else
- = f.submit 'Create label', class: 'btn btn-success js-save-button'
+ = f.submit 'Create label', class: 'btn btn-success js-save-button qa-label-create-button'
= link_to 'Cancel', back_path, class: 'btn btn-cancel'