summaryrefslogtreecommitdiff
path: root/app/views/shared/issuable/_filter.html.haml
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2015-08-21 14:26:57 -0700
committerStan Hu <stanhu@gmail.com>2015-08-21 14:27:21 -0700
commit577df6b8ca4532545ac2cad11a693dc976160b36 (patch)
treee3d7e2c4139d7603af9679111079025273c76730 /app/views/shared/issuable/_filter.html.haml
parent3715a0f29b6758b3075abb6f28ee24c4eb8ed427 (diff)
downloadgitlab-ce-577df6b8ca4532545ac2cad11a693dc976160b36.tar.gz
List the current user first in issuable dropdowns
Diffstat (limited to 'app/views/shared/issuable/_filter.html.haml')
-rw-r--r--app/views/shared/issuable/_filter.html.haml2
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 8801f213fd1..bcaa48c7a12 100644
--- a/app/views/shared/issuable/_filter.html.haml
+++ b/app/views/shared/issuable/_filter.html.haml
@@ -60,7 +60,7 @@
.issues_bulk_update.hide
= form_tag bulk_update_namespace_project_issues_path(@project.namespace, @project), method: :post do
= select_tag('update[state_event]', options_for_select([['Open', 'reopen'], ['Closed', 'close']]), prompt: "Status", class: 'form-control')
- = users_select_tag('update[assignee_id]', placeholder: 'Assignee', null_user: true, current_user: true)
+ = users_select_tag('update[assignee_id]', placeholder: 'Assignee', null_user: true, first_user: true, current_user: true)
= select_tag('update[milestone_id]', bulk_update_milestone_options, prompt: "Milestone")
= hidden_field_tag 'update[issues_ids]', []
= hidden_field_tag :state_event, params[:state_event]