summaryrefslogtreecommitdiff
path: root/app/views/shared/issuable/_form.html.haml
diff options
context:
space:
mode:
authorClement Ho <clemmakesapps@gmail.com>2018-05-31 19:20:46 +0000
committerAnnabel Gray <annabel.m.gray@gmail.com>2018-05-31 19:20:46 +0000
commit1a6d848db725e8db0595b4d8b71afba2153445ae (patch)
treec1464f90d03c3a5404023fbb922888c007d744bf /app/views/shared/issuable/_form.html.haml
parente57ad62d488b15b9e65ea63f4ab78e51336318a5 (diff)
downloadgitlab-ce-1a6d848db725e8db0595b4d8b71afba2153445ae.tar.gz
Fix checkbox/radio button structure
Diffstat (limited to 'app/views/shared/issuable/_form.html.haml')
-rw-r--r--app/views/shared/issuable/_form.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/shared/issuable/_form.html.haml b/app/views/shared/issuable/_form.html.haml
index fbc608b207a..8497e3220ee 100644
--- a/app/views/shared/issuable/_form.html.haml
+++ b/app/views/shared/issuable/_form.html.haml
@@ -23,8 +23,8 @@
.form-group.row
.offset-sm-2.col-sm-10
.form-check
- = form.label :confidential do
- = form.check_box :confidential
+ = form.check_box :confidential, class: 'form-check-input'
+ = form.label :confidential, class: 'form-check-label' do
This issue is confidential and should only be visible to team members with at least Reporter access.
= render 'shared/issuable/form/metadata', issuable: issuable, form: form