Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2018-06-20 19:05:23 +0300
committerRémy Coutable <remy@rymai.me>2018-06-20 19:05:23 +0300
commit71c4a8a063709f9eacfb60531a06f9d8d0620e1f (patch)
treec9cbb6648f978ea2493156279cd715e2b449153c /app/views/shared
parent27dea9aa24ab97bcc075b3aa2bc45f62131138c5 (diff)
parentad39bd58497e790140fbeacde414ff869dcc56ca (diff)
Merge branch '48153-date-selection-dialog-broken-when-creating-a-new-milestone' into 'master'
Resolve "Date selection dialog broken when creating a new milestone" Closes #48153 See merge request gitlab-org/gitlab-ce!20033
Diffstat (limited to 'app/views/shared')
-rw-r--r--app/views/shared/milestones/_form_dates.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/shared/milestones/_form_dates.html.haml b/app/views/shared/milestones/_form_dates.html.haml
index 608dd35182d..922805958a5 100644
--- a/app/views/shared/milestones/_form_dates.html.haml
+++ b/app/views/shared/milestones/_form_dates.html.haml
@@ -2,10 +2,10 @@
.form-group.row
= f.label :start_date, "Start Date", class: "col-form-label col-sm-2"
.col-sm-10
- = f.text_field :start_date, class: "datepicker form-control", placeholder: "Select start date"
+ = f.text_field :start_date, class: "datepicker form-control", placeholder: "Select start date", autocomplete: 'off'
%a.inline.float-right.prepend-top-5.js-clear-start-date{ href: "#" } Clear start date
.form-group.row
= f.label :due_date, "Due Date", class: "col-form-label col-sm-2"
.col-sm-10
- = f.text_field :due_date, class: "datepicker form-control", placeholder: "Select due date"
+ = f.text_field :due_date, class: "datepicker form-control", placeholder: "Select due date", autocomplete: 'off'
%a.inline.float-right.prepend-top-5.js-clear-due-date{ href: "#" } Clear due date