summaryrefslogtreecommitdiff
path: root/app/views/projects/issues/_issues.html.haml
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-11-25 18:57:44 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-11-25 18:57:44 +0200
commit11aa7b00251d8fd29bb7f8c5a6176eb9713ff3ae (patch)
treeea5eec7047242ce9b31ef409c2ae35ca727ea0c5 /app/views/projects/issues/_issues.html.haml
parent75f0ff2ce1dffd3d034f8353e454349830166999 (diff)
downloadgitlab-ce-11aa7b00251d8fd29bb7f8c5a6176eb9713ff3ae.tar.gz
Added ability to clear milestone/assignee during bulk update
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/views/projects/issues/_issues.html.haml')
-rw-r--r--app/views/projects/issues/_issues.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/issues/_issues.html.haml b/app/views/projects/issues/_issues.html.haml
index 1ad1f10e1ed..0cde7acfcd1 100644
--- a/app/views/projects/issues/_issues.html.haml
+++ b/app/views/projects/issues/_issues.html.haml
@@ -6,8 +6,8 @@
= form_tag bulk_update_project_issues_path(@project), method: :post do
%span Update selected issues with &nbsp;
= select_tag('update[status]', options_for_select(['open', 'closed']), prompt: "Status")
- = select_tag('update[assignee_id]', options_from_collection_for_select(@project.team.members, "id", "name", params[:assignee_id]), prompt: "Assignee")
- = select_tag('update[milestone_id]', options_from_collection_for_select(project_active_milestones, "id", "title", params[:milestone_id]), prompt: "Milestone")
+ = select_tag('update[assignee_id]', bulk_update_assignee_options, prompt: "Assignee")
+ = select_tag('update[milestone_id]', bulk_update_milestone_options, prompt: "Milestone")
= hidden_field_tag 'update[issues_ids]', []
= hidden_field_tag :status, params[:status]
= button_tag "Save", class: "btn update_selected_issues btn-small btn-save"