diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-09-10 10:17:53 +0000 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-09-10 10:17:53 +0000 |
commit | dadf6daac47badf01a7a0bac94527a4d68555db6 (patch) | |
tree | a98123770e05e4361b6a04266efaebcb33abdb0f | |
parent | 32208c501a74515b583e77794dab8ae5028d3f1a (diff) | |
parent | def939a5628fb3df24b39dbe7b39636968c294ed (diff) | |
download | gitlab-ce-dadf6daac47badf01a7a0bac94527a4d68555db6.tar.gz |
Merge branch 'disable-issue-autofill' into 'master'
Turned off autocomplete for new issue titles
See merge request !1271
-rw-r--r-- | app/views/shared/issuable/_form.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/shared/issuable/_form.html.haml b/app/views/shared/issuable/_form.html.haml index 09327d645f3..1aa1e3c6c97 100644 --- a/app/views/shared/issuable/_form.html.haml +++ b/app/views/shared/issuable/_form.html.haml @@ -9,7 +9,7 @@ = f.label :title, class: 'control-label' do %strong= 'Title *' .col-sm-10 - = f.text_field :title, maxlength: 255, autofocus: true, + = f.text_field :title, maxlength: 255, autofocus: true, autocomplete: 'off', class: 'form-control pad js-gfm-input', required: true - if issuable.is_a?(MergeRequest) |