]> source.dussan.org Git - redmine.git/commitdiff
Merged r19419 from trunk to 4.1-stable (#32768).
authorGo MAEDA <maeda@farend.jp>
Sun, 12 Jan 2020 06:39:56 +0000 (06:39 +0000)
committerGo MAEDA <maeda@farend.jp>
Sun, 12 Jan 2020 06:39:56 +0000 (06:39 +0000)
git-svn-id: http://svn.redmine.org/redmine/branches/4.1-stable@19420 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/timelog/_list.html.erb
test/functional/timelog_controller_test.rb

index b3146c28bea7b65eae8a651c14a9366a62b60725..582d1208cd2e50d964dcdb9b67762ad81c85dab4 100644 (file)
         <%= link_to_context_menu %>
     </td>
   </tr>
+
   <% @query.block_columns.each do |column|
-       if (text = column_content(column, issue)) && text.present? -%>
+       if (text = column_content(column, entry)) && text.present? -%>
   <tr class="<%= current_cycle %>">
     <td colspan="<%= @query.inline_columns.size + 1 %>" class="<%= column.css_classes %>">
-    <% if query.block_columns.count > 1 %>
+    <% if @query.block_columns.count > 1 %>
       <span><%= column.caption %></span>
     <% end %>
     <%= text %>
index ab4ed364ed32b0b8ea26ee361c92b66bddae6d1f..f23c9601d3dce64add4ff793270626bbf6a7efc6 100644 (file)
@@ -1418,4 +1418,19 @@ class TimelogControllerTest < Redmine::ControllerTest
       assert_select '+ span.count', :text => '2'
     end
   end
+
+  def test_index_with_inline_issue_long_text_custom_field_column
+    field = IssueCustomField.create!(:name => 'Long text', :field_format => 'text', :full_width_layout => '1',
+      :tracker_ids => [1], :is_for_all => true)
+    issue = Issue.find(1)
+    issue.custom_field_values = {field.id => 'This is a long text'}
+    issue.save!
+
+    get :index, :params => {
+        :set_filter => 1,
+        :c => ['subject', 'description', "issue.cf_#{field.id}"]
+      }
+    assert_response :success
+    assert_select "td.issue_cf_#{field.id}", :text => 'This is a long text'
+  end
 end