summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCristian Bordei <cbordei@pitechnologies.ro>2014-04-15 16:55:07 +0300
committerCristian Bordei <cbordei@pitechnologies.ro>2014-04-15 16:55:07 +0300
commit8e278cfe75c3a63debf80f8d79433d492d204117 (patch)
tree5c63259d22df49a0cf8c82d1f8760e0bbb279767
parent415c0f4bbe12dbd78bf24d50e66e3092df07fa21 (diff)
downloadgitlab-ce-8e278cfe75c3a63debf80f8d79433d492d204117.tar.gz
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]', []