Commit 46ad5462 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge branch 'imrpove-filter-dropdown' into 'master'

Imrpove filter dropdown

Fixes #1617

See merge request !1120
parents b28c1d52 810028f3
......@@ -28,7 +28,7 @@ class Projects::IssuesController < Projects::ApplicationController
@milestone = @project.milestones.find(milestone_id) if milestone_id.present? && !milestone_id.to_i.zero?
sort_param = params[:sort] || 'newest'
@sort = sort_param.humanize unless sort_param.empty?
@assignees = User.where(id: @project.issues.pluck(:assignee_id))
@assignees = User.where(id: @project.issues.pluck(:assignee_id)).active
respond_to do |format|
format.html
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment