Commit 579c0b97 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge pull request #4393 from dosire/scrum-improvements

Rename unspecified to make it clearer and in line with scrum terminology
parents 743c232b ef629ab4
......@@ -15,7 +15,7 @@ module IssuesHelper
# to allow filtering issues by an unassigned User or Milestone
def unassigned_filter
# Milestone uses :title, Issue uses :name
OpenStruct.new(id: 0, title: 'Unspecified', name: 'Unassigned')
OpenStruct.new(id: 0, title: 'None (backlog)', name: 'Unassigned')
end
def issues_filter
......
......@@ -63,7 +63,7 @@
- if @milestone.present?
%strong= @milestone.title
- elsif params[:milestone_id] == "0"
Unspecified
None (backlog)
- else
Any
%b.caret
......@@ -72,7 +72,7 @@
= link_to project_issues_with_filter_path(@project, milestone_id: nil) do
Any
= link_to project_issues_with_filter_path(@project, milestone_id: 0) do
Unspecified
None (backlog)
- issues_active_milestones.each do |milestone|
%li
= link_to project_issues_with_filter_path(@project, milestone_id: milestone.id) do
......
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