1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-01 13:19:39 +00:00

use "do end" instead of {} at IssuesHelper

git-svn-id: http://svn.redmine.org/redmine/trunk@19971 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-08-09 15:57:36 +00:00
parent 76c38c4abf
commit 9270f37860

View File

@ -175,11 +175,12 @@ module IssuesHelper
false, :id => nil),
:class => 'checkbox') +
content_tag('td',
relation.to_s(@issue) {|other|
relation.to_s(@issue) do |other|
link_to_issue(
other,
:project => Setting.cross_project_issue_relations?)
}.html_safe,
:project => Setting.cross_project_issue_relations?
)
end.html_safe,
:class => 'subject') +
content_tag('td', other_issue.status, :class => 'status') +
content_tag('td', link_to_user(other_issue.assigned_to), :class => 'assigned_to') +