summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-04-15 18:37:45 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-04-15 18:37:45 +0300
commitcad9572ee9f19fa8613833704752250f4b2dc549 (patch)
tree01bdf7b67e6754d00cf04fe9af25a20d08040b6f
parentcd6232187b707b0a278bd91986ec85dcfe66046f (diff)
parent8e278cfe75c3a63debf80f8d79433d492d204117 (diff)
downloadgitlab-ce-cad9572ee9f19fa8613833704752250f4b2dc549.tar.gz
Merge pull request #6780 from cbordei/hotfix/issue-6615
Fixed multiple close issue #6615
-rw-r--r--app/views/projects/issues/_issues.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/issues/_issues.html.haml b/app/views/projects/issues/_issues.html.haml
index 3b5e398c327..e85ff3a7865 100644
--- a/app/views/projects/issues/_issues.html.haml
+++ b/app/views/projects/issues/_issues.html.haml
@@ -54,7 +54,7 @@
.clearfix
.issues_bulk_update.hide
= form_tag bulk_update_project_issues_path(@project), method: :post do
- = select_tag('update[status]', options_for_select(['Open', 'Closed']), prompt: "Status")
+ = select_tag('update[status]', options_for_select([['Open', 'open'], ['Closed', 'closed']]), 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]', []