diff options
author | Phil Hughes <me@iamphill.com> | 2016-03-22 16:00:47 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2016-03-22 16:00:47 +0000 |
commit | 33489f29f331901bff4551a874e78c86a4f6683c (patch) | |
tree | c356225e15441128407455ff153c79697910dd03 /app | |
parent | 8df6c3b9604ed7b762fd5485275e10f94e698664 (diff) | |
download | gitlab-ce-33489f29f331901bff4551a874e78c86a4f6683c.tar.gz |
Fixes issue with assign milestone not loading milestone listfix-milestone-assign
Diffstat (limited to 'app')
-rw-r--r-- | app/views/shared/issuable/_filter.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/shared/issuable/_filter.html.haml b/app/views/shared/issuable/_filter.html.haml index ac20f7d1f7e..53952e608ea 100644 --- a/app/views/shared/issuable/_filter.html.haml +++ b/app/views/shared/issuable/_filter.html.haml @@ -42,7 +42,7 @@ placeholder: "Search authors", data: { first_user: (current_user.username if current_user), null_user: true, current_user: true, project_id: @project.id, field_name: "update[assignee_id]" } }) .filter-item.inline = dropdown_tag("Milestone", options: { title: "Assign milestone", toggle_class: 'js-milestone-select', filter: true, dropdown_class: "dropdown-menu-selectable", - placeholder: "Search milestones", data: { show_no: true, field_name: "update[milestone_id]", project_id: @project.id, milestones: namespace_project_milestones_path(@project.namespace, @project, :js), use_id: true } }) + placeholder: "Search milestones", data: { show_no: true, field_name: "update[milestone_id]", project_id: @project.id, milestones: namespace_project_milestones_path(@project.namespace, @project, :json), use_id: true } }) = hidden_field_tag 'update[issues_ids]', [] = hidden_field_tag :state_event, params[:state_event] .filter-item.inline |