diff options
| author | Dmitriy Zaporozhets <dzaporozhets@gitlab.com> | 2015-03-07 01:06:44 +0000 |
|---|---|---|
| committer | Dmitriy Zaporozhets <dzaporozhets@gitlab.com> | 2015-03-07 01:06:44 +0000 |
| commit | 3cf4359b00d13959741e8c4909112c21b021c86c (patch) | |
| tree | d492de8066f15fe1767045db11f7eacb4feaee47 /app/views | |
| parent | e68ad7fbb83d1b2799d3672791d723adfd494219 (diff) | |
| parent | b673d87227867f6d142ee6e615c750a600661c6b (diff) | |
| download | gitlab-ce-3cf4359b00d13959741e8c4909112c21b021c86c.tar.gz | |
Merge branch 'mass-change-comments' into 'master'
Send notifications and leave system comments when bulk updating issues.
Resolves https://dev.gitlab.org/gitlab/gitlabhq/issues/1885.
See merge request !1646
Diffstat (limited to 'app/views')
| -rw-r--r-- | app/views/projects/issues/index.html.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/issues/index.html.haml b/app/views/projects/issues/index.html.haml index 7defc8787a9..cbbcb1d06c0 100644 --- a/app/views/projects/issues/index.html.haml +++ b/app/views/projects/issues/index.html.haml @@ -25,11 +25,11 @@ .clearfix .issues_bulk_update.hide = form_tag bulk_update_namespace_project_issues_path(@project.namespace, @project), method: :post do - = select_tag('update[status]', options_for_select([['Open', 'open'], ['Closed', 'closed']]), prompt: "Status") + = select_tag('update[state_event]', options_for_select([['Open', 'reopen'], ['Closed', 'close']]), prompt: "Status") = project_users_select_tag('update[assignee_id]', placeholder: 'Assignee') = select_tag('update[milestone_id]', bulk_update_milestone_options, prompt: "Milestone") = hidden_field_tag 'update[issues_ids]', [] - = hidden_field_tag :status, params[:status] + = hidden_field_tag :state_event, params[:state_event] = button_tag "Update issues", class: "btn update_selected_issues btn-save" .issues-holder |
