diff options
Diffstat (limited to 'lib/redmine/helpers/gantt.rb')
-rw-r--r-- | lib/redmine/helpers/gantt.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/redmine/helpers/gantt.rb b/lib/redmine/helpers/gantt.rb index 3238de8cf..a760a3466 100644 --- a/lib/redmine/helpers/gantt.rb +++ b/lib/redmine/helpers/gantt.rb @@ -749,7 +749,10 @@ module Redmine :class => "#{options[:css]} task_todo", :id => html_id} if options[:issue] - content_opt[:data] = {"rels" => issue_relations(options[:issue]).to_json} + rels = issue_relations(options[:issue]) + if rels.present? + content_opt[:data] = {"rels" => rels.to_json} + end end output << view.content_tag(:div, ' '.html_safe, content_opt) if coords[:bar_late_end] |