From 9f682a4c84338e83085b78dce348d38fc82f5b55 Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Thu, 1 Aug 2019 08:10:37 +0000 Subject: [PATCH] Add closed_on to the tooltip if the issue is closed (#31697). Patch by Mizuki ISHIKAWA. git-svn-id: http://svn.redmine.org/redmine/trunk@18337 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/helpers/issues_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb index c6b8cb6dd..addd66dc9 100644 --- a/app/helpers/issues_helper.rb +++ b/app/helpers/issues_helper.rb @@ -62,7 +62,7 @@ module IssuesHelper link_to_issue(issue) + "

".html_safe + "#{@cached_label_project}: #{link_to_project(issue.project)}
".html_safe + - "#{@cached_label_status}: #{h(issue.status.name)}
".html_safe + + "#{@cached_label_status}: #{h(issue.status.name) + (" (#{format_date(issue.closed_on)})" if issue.closed?)}
".html_safe + "#{@cached_label_start_date}: #{format_date(issue.start_date)}
".html_safe + "#{@cached_label_due_date}: #{format_date(issue.due_date)}
".html_safe + "#{@cached_label_assigned_to}: #{avatar(issue.assigned_to, :size => "13", :title => l(:field_assigned_to)) if issue.assigned_to} #{h(issue.assigned_to)}
".html_safe + -- 2.39.5