mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-30 20:29:37 +00:00
Hide version and/or category on issue details when no versions and/or categories are defined (#18004).
git-svn-id: http://svn.redmine.org/redmine/trunk@14679 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
589bde0899
commit
b68b5819d5
@ -41,10 +41,10 @@
|
||||
unless @issue.disabled_core_fields.include?('assigned_to_id')
|
||||
rows.left l(:field_assigned_to), avatar(@issue.assigned_to, :size => "14").to_s.html_safe + (@issue.assigned_to ? link_to_user(@issue.assigned_to) : "-"), :class => 'assigned-to'
|
||||
end
|
||||
unless @issue.disabled_core_fields.include?('category_id')
|
||||
unless @issue.disabled_core_fields.include?('category_id') || (@issue.category.nil? && @issue.project.issue_categories.none?)
|
||||
rows.left l(:field_category), (@issue.category ? @issue.category.name : "-"), :class => 'category'
|
||||
end
|
||||
unless @issue.disabled_core_fields.include?('fixed_version_id')
|
||||
unless @issue.disabled_core_fields.include?('fixed_version_id') || (@issue.fixed_version.nil? && @issue.assignable_versions.none?)
|
||||
rows.left l(:field_fixed_version), (@issue.fixed_version ? link_to_version(@issue.fixed_version) : "-"), :class => 'fixed-version'
|
||||
end
|
||||
|
||||
|
||||
@ -1377,6 +1377,22 @@ class IssuesControllerTest < ActionController::TestCase
|
||||
end
|
||||
end
|
||||
|
||||
def test_show_should_display_category_field_if_categories_are_defined
|
||||
Issue.update_all :category_id => nil
|
||||
|
||||
get :show, :id => 1
|
||||
assert_response :success
|
||||
assert_select 'table.attributes .category'
|
||||
end
|
||||
|
||||
def test_show_should_not_display_category_field_if_no_categories_are_defined
|
||||
Project.find(1).issue_categories.delete_all
|
||||
|
||||
get :show, :id => 1
|
||||
assert_response :success
|
||||
assert_select 'table.attributes .category', 0
|
||||
end
|
||||
|
||||
def test_show_should_display_link_to_the_assignee
|
||||
get :show, :id => 2
|
||||
assert_response :success
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user