Commit d3b7633d authored by tiagonbotelho's avatar tiagonbotelho

fixes small issues

parent b94bdb69
...@@ -35,7 +35,6 @@ v 8.5.5 ...@@ -35,7 +35,6 @@ v 8.5.5
- Prevent a 500 error in Todos when author was removed - Prevent a 500 error in Todos when author was removed
- Fix pagination for filtered dashboard and explore pages - Fix pagination for filtered dashboard and explore pages
- Fix "Show all" link behavior - Fix "Show all" link behavior
- Add #upcoming filter to Milestone filter (Tiago Botelho)
- Add #upcoming filter to Milestone filter (Tiago Botelho) - Add #upcoming filter to Milestone filter (Tiago Botelho)
v 8.5.4 v 8.5.4
......
...@@ -244,7 +244,7 @@ class IssuableFinder ...@@ -244,7 +244,7 @@ class IssuableFinder
items items
end end
def upcoming? def filter_by_upcoming_milestone?
params[:milestone_title] == '#upcoming' params[:milestone_title] == '#upcoming'
end end
...@@ -252,7 +252,7 @@ class IssuableFinder ...@@ -252,7 +252,7 @@ class IssuableFinder
if milestones? if milestones?
if filter_by_no_milestone? if filter_by_no_milestone?
items = items.where(milestone_id: [-1, nil]) items = items.where(milestone_id: [-1, nil])
elsif upcoming? elsif filter_by_upcoming_milestone?
upcoming = Milestone.where(project_id: projects).upcoming upcoming = Milestone.where(project_id: projects).upcoming
items = items.joins(:milestone).where(milestones: { title: upcoming.title }) items = items.joins(:milestone).where(milestones: { title: upcoming.title })
else else
......
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