Actions
Defect #21037
closedIssue show : bullet points not aligned if sub-task is in a different project
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Affected version:
Description
The project name is before the hierarchy triangles thus shifting them.
To fix that, the project name can be put in the link which has the css with the triangle image :
only_path = options[:only_path].nil? ? true : options[:only_path]
# fix
text = h("(#{issue.project}) - ") + text if options[:project]
# Smile specific options + :hours_by_day
s = link_to(text, issue_path(issue, :only_path => only_path,
:hours_by_day => options[:hours_by_day],
:debug => options[:debug]
),
:class => issue.css_classes, :title => title)
s << h(": #{subject}") if subject
#s = h("#{issue.project} - ") + s if options[:project]
Files
Updated by Jérôme BATAILLE about 9 years ago
The fix is to be done in application_helper#link_to_issue
Don't mind the Smile specific parts : hours_by_day and debug
Updated by Toshi MARUYAMA about 9 years ago
- Status changed from New to Needs feedback
I cannot understand what you said.
Could you give us screen shot and patch?
Updated by Jérôme BATAILLE over 8 years ago
- File redmine_subtasks_not_aligned_other_project.png redmine_subtasks_not_aligned_other_project.png added
- File redmine_subtasks_not_aligned_other_project_fixed.png redmine_subtasks_not_aligned_other_project_fixed.png added
- File redmine_3.2.0_21037.patch redmine_3.2.0_21037.patch added
- without patch :
- with patch :
Updated by Toshi MARUYAMA over 8 years ago
- Status changed from Needs feedback to New
- Target version set to 3.3.0
Updated by Jean-Philippe Lang over 8 years ago
- Category changed from Issues to UI
- Status changed from New to Closed
- Assignee set to Jean-Philippe Lang
- Resolution set to Fixed
Fixed in r15374. I didn't integrate the project name in the link as proposed in the patch. Just a few changes to the CSS.
Actions