From f1cdcc4f9f60091dbd2a84cc6f4600cd5fb97b5a Mon Sep 17 00:00:00 2001 From: Anton Khorev Date: Tue, 9 Jan 2024 16:25:48 +0300 Subject: [PATCH] Remove string interpolation from issue heading --- app/views/issues/show.html.erb | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/app/views/issues/show.html.erb b/app/views/issues/show.html.erb index 62bd501b7..71b5b40f6 100644 --- a/app/views/issues/show.html.erb +++ b/app/views/issues/show.html.erb @@ -9,9 +9,17 @@ <% else %> | <%= t ".no_reports" %> <% end %> - | <%= t ".report_created_at", :datetime => l(@issue.created_at.to_datetime, :format => :friendly) %> - <%= " | #{t('.last_resolved_at', :datetime => l(@issue.resolved_at.to_datetime, :format => :friendly))}" if @issue.resolved_at? %> - <%= " | #{t('.last_updated_at', :datetime => l(@issue.updated_at.to_datetime, :format => :friendly), :displayname => @issue.user_updated.display_name)}" if @issue.user_updated %> + | <%= t ".report_created_at", + :datetime => l(@issue.created_at.to_datetime, :format => :friendly) %> + <% if @issue.resolved_at? %> + | <%= t ".last_resolved_at", + :datetime => l(@issue.resolved_at.to_datetime, :format => :friendly) %> + <% end %> + <% if @issue.user_updated %> + | <%= t ".last_updated_at", + :datetime => l(@issue.updated_at.to_datetime, :format => :friendly), + :displayname => @issue.user_updated.display_name %> + <% end %>