summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarby <darbsies@gmail.com>2015-09-09 15:04:38 -0700
committerDarby <darbsies@gmail.com>2015-09-09 15:04:38 -0700
commitdef939a5628fb3df24b39dbe7b39636968c294ed (patch)
tree10a3611e8bc027d530b5ef2683662a73e9ff793d
parenta81ce718c772672706da33848670149dd577ae79 (diff)
downloadgitlab-ce-disable-issue-autofill.tar.gz
Turned off autocomplete for new issue titlesdisable-issue-autofill
-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)