From: Anton Khorev Date: Tue, 9 Jan 2024 13:25:48 +0000 (+0300) Subject: Remove string interpolation from issue heading X-Git-Tag: live~315^2~2 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/f1cdcc4f9f60091dbd2a84cc6f4600cd5fb97b5a Remove string interpolation from issue heading --- 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 %>