Patch #40000 ยป 40000.patch
| lib/redmine/helpers/gantt.rb | ||
|---|---|---|
| 765 | 765 |
tag_options[:id] = "issue-#{object.id}"
|
| 766 | 766 |
tag_options[:class] = "issue-subject hascontextmenu" |
| 767 | 767 |
tag_options[:title] = object.subject |
| 768 |
children = object.children & project_issues(object.project) |
|
| 768 |
children = object.leaf? ? [] : object.children & project_issues(object.project)
|
|
| 769 | 769 |
has_children = |
| 770 | 770 |
children.present? && |
| 771 | 771 |
(children.collect(&:fixed_version).uniq & [object.fixed_version]).present? |