Actions
Defect #13673
closedParent issue column includes issue subject (making issue list unworkable wide)
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Affected version:
Description
Hi. There is a report for the new bug I've just found.
Since redmine 2.3.0, the parent issue field is being displayed too long with the issue's title in the list view.
This disturbs the list narrowing other columns as figure below, especially when the issues have long titles.
I found r10972 (#1766) is responsible for this behavior; it seems that this is just a mistake rather than intended.
This is a workaround patch I've tried:
--- app/helpers/queries_helper.rb (revision 11695)
+++ app/helpers/queries_helper.rb (working copy)
@@ -100,7 +100,7 @@ module QueriesHelper
when 'FalseClass'
l(:general_text_No)
when 'Issue'
- value.visible? ? link_to_issue(value) : "##{value.id}"
+ value.visible? ? link_to_issue(value, :subject => false) : "##{value.id}"
when 'IssueRelation'
other = value.other_issue(issue)
content_tag('span',
Thanks.
Files
Related issues
Actions