mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-31 12:49:38 +00:00
Fixed that parent column should not include issue subject (#13673).
git-svn-id: http://svn.redmine.org/redmine/trunk@13556 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
db63f5a925
commit
984e5a36bb
@ -97,6 +97,8 @@ module QueriesHelper
|
||||
link_to value, issue_path(issue)
|
||||
when :subject
|
||||
link_to value, issue_path(issue)
|
||||
when :parent
|
||||
value ? (value.visible? ? link_to_issue(value, :subject => false) : "##{value.id}") : ''
|
||||
when :description
|
||||
issue.description? ? content_tag('div', textilizable(issue, :description), :class => "wiki") : ''
|
||||
when :done_ratio
|
||||
|
||||
@ -854,6 +854,17 @@ class IssuesControllerTest < ActionController::TestCase
|
||||
assert_equal 'application/pdf', response.content_type
|
||||
end
|
||||
|
||||
def test_index_with_parent_column
|
||||
Issue.delete_all
|
||||
parent = Issue.generate!
|
||||
child = Issue.generate!(:parent_issue_id => parent.id)
|
||||
|
||||
get :index, :c => %w(parent)
|
||||
|
||||
assert_select 'td.parent', :text => "#{parent.tracker} ##{parent.id}"
|
||||
assert_select 'td.parent a[title=?]', parent.subject
|
||||
end
|
||||
|
||||
def test_index_send_html_if_query_is_invalid
|
||||
get :index, :f => ['start_date'], :op => {:start_date => '='}
|
||||
assert_equal 'text/html', @response.content_type
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user