From 9075c4fe232cc9021a260b595215db8c4145a4b2 Mon Sep 17 00:00:00 2001 From: Marwin Hochfelsner <50826859+hlfan@users.noreply.github.com> Date: Thu, 18 Dec 2025 14:32:42 +0100 Subject: [PATCH] Fix invalid

nesting in comment rendering --- app/views/browse/_common_details.html.erb | 4 ++-- app/views/changesets/show.html.erb | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/views/browse/_common_details.html.erb b/app/views/browse/_common_details.html.erb index 598a38f21..92a88a6bc 100644 --- a/app/views/browse/_common_details.html.erb +++ b/app/views/browse/_common_details.html.erb @@ -7,9 +7,9 @@ #<%= link_to_unless_current common_details.version, :controller => "old_#{@type.pluralize}", :action => :show, :version => common_details.version %> -

+

<%= common_details.changeset.comment_html || t("browse.no_comment") %> -

+
diff --git a/app/views/changesets/show.html.erb b/app/views/changesets/show.html.erb index d26ce5d91..d3b42072e 100644 --- a/app/views/changesets/show.html.erb +++ b/app/views/changesets/show.html.erb @@ -3,9 +3,9 @@ <%= render "sidebar_header", :title => t(".title", :id => @changeset.id) %>
-

+

<%= @changeset.comment_html || t("browse.no_comment") %> -

+
<%= tag.p :class => "details", :data => { :changeset => changeset_data(@changeset) } do %> <%= changeset_details(@changeset) %> <% end %> -- 2.39.5