From: Go MAEDA Date: Tue, 14 May 2024 07:44:05 +0000 (+0000) Subject: Fix slow display of projects list when including project description column (#40610). X-Git-Tag: 6.0.0~337 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=3761510af8b373931bc2c92567ea1d00e99415a7;p=redmine.git Fix slow display of projects list when including project description column (#40610). Patch by Go MAEDA (@maeda). git-svn-id: https://svn.redmine.org/redmine/trunk@22829 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/helpers/projects_queries_helper.rb b/app/helpers/projects_queries_helper.rb index 331957651..dc540a432 100644 --- a/app/helpers/projects_queries_helper.rb +++ b/app/helpers/projects_queries_helper.rb @@ -27,7 +27,13 @@ module ProjectsQueriesHelper (tag.span(class: 'icon icon-user my-project', title: l(:label_my_projects)) if User.current.member_of?(item)) + (tag.span(class: 'icon icon-bookmarked-project', title: l(:label_my_bookmarks)) if User.current.bookmarked_project_ids.include?(item.id)) when :short_description - item.description? ? content_tag('div', textilizable(item, :short_description), :class => "wiki") : '' + if item.description? + # Sets :inline_attachments to false to avoid performance issues + # caused by unnecessary loading of attachments + content_tag('div', textilizable(item, :short_description, :inline_attachments => false), :class => 'wiki') + else + '' + end when :homepage item.homepage? ? content_tag('div', textilizable(item, :homepage), :class => "wiki") : '' when :status