From: Go MAEDA Date: Fri, 8 May 2020 03:44:33 +0000 (+0000) Subject: Parent task subject column in gantt is not fully displayed when widened (#33220). X-Git-Tag: 4.2.0~1029 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=dc20ffcfaeb9ac6fcbf126053d486f8efee41542;p=redmine.git Parent task subject column in gantt is not fully displayed when widened (#33220). Patch by Yuichi HARADA. git-svn-id: http://svn.redmine.org/redmine/trunk@19756 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/gantts/show.html.erb b/app/views/gantts/show.html.erb index 348d04b69..8265ccc9d 100644 --- a/app/views/gantts/show.html.erb +++ b/app/views/gantts/show.html.erb @@ -177,14 +177,17 @@ <% end %> <% end %> -<% @query.columns.each do |column| %> - <% next if Redmine::Helpers::Gantt::UNAVAILABLE_COLUMNS.include?(column.name) %> - +<% + @query.columns.each do |column| + next if Redmine::Helpers::Gantt::UNAVAILABLE_COLUMNS.include?(column.name) + column_name = column.name.to_s.tr('.', '_') +%> + <% style = "position: relative;" style += "height: #{t_height + 24}px;" %> - <%= content_tag(:div, :style => style, :class => "gantt_#{column.name}_container gantt_selected_column_container") do %> + <%= content_tag(:div, :style => style, :class => "gantt_#{column_name}_container gantt_selected_column_container") do %> <% style = "height: #{t_height}px;" style += 'overflow: hidden;' @@ -195,7 +198,7 @@ style += 'background: #eee;' %> <%= content_tag(:div, content_tag(:p, column.caption, :class => 'gantt_hdr_selected_column_name'), :style => style, :class => "gantt_hdr") %> - <%= content_tag(:div, :class => "gantt_#{column.name} gantt_selected_column_content") do %> + <%= content_tag(:div, :class => "gantt_#{column_name} gantt_selected_column_content") do %> <%= @gantt.selected_column_content({:column => column, :top => headers_height + 8, :zoom => zoom, :g_width => g_width}).html_safe %> <% end %> <% end %>