diff options
author | Robert Speicher <rspeicher@gmail.com> | 2018-09-14 11:35:48 -0500 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2018-09-14 12:09:39 -0500 |
commit | 3668a3f29f042daa458b5166b6f57e531975f98a (patch) | |
tree | eeb1a3001da71027244723f43f3a1b1657a2abf4 /app | |
parent | 044adc86b779cb330334f92136b180a77a17e119 (diff) | |
download | gitlab-ce-3668a3f29f042daa458b5166b6f57e531975f98a.tar.gz |
Disable autocomplete for issuable due date field
Diffstat (limited to 'app')
-rw-r--r-- | app/views/shared/issuable/form/_metadata.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/shared/issuable/form/_metadata.html.haml b/app/views/shared/issuable/form/_metadata.html.haml index d8580ad8ab4..ac8d58c0bfe 100644 --- a/app/views/shared/issuable/form/_metadata.html.haml +++ b/app/views/shared/issuable/form/_metadata.html.haml @@ -34,4 +34,4 @@ = form.label :due_date, "Due date", class: "col-form-label col-md-2 col-lg-4" .col-8 .issuable-form-select-holder - = form.text_field :due_date, id: "issuable-due-date", class: "datepicker form-control", placeholder: "Select due date" + = form.text_field :due_date, id: "issuable-due-date", class: "datepicker form-control", placeholder: "Select due date", autocomplete: 'off' |