summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-09-10 10:17:53 +0000
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-09-10 10:17:53 +0000
commitdadf6daac47badf01a7a0bac94527a4d68555db6 (patch)
treea98123770e05e4361b6a04266efaebcb33abdb0f
parent32208c501a74515b583e77794dab8ae5028d3f1a (diff)
parentdef939a5628fb3df24b39dbe7b39636968c294ed (diff)
downloadgitlab-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.haml2
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)