From 648aaa58f8966581208ea2f7ca919ae524aab7b0 Mon Sep 17 00:00:00 2001 From: Andy Allan Date: Wed, 18 Mar 2026 17:07:32 +0000 Subject: [PATCH] Make the diary comment log in UI a regular paragraph --- app/views/diary_entries/show.html.erb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/views/diary_entries/show.html.erb b/app/views/diary_entries/show.html.erb index 5afb9620c..83e089d61 100644 --- a/app/views/diary_entries/show.html.erb +++ b/app/views/diary_entries/show.html.erb @@ -36,15 +36,14 @@
+

<%= t ".leave_a_comment" %>

<% if current_user %> -

<%= t ".leave_a_comment" %>

- <%= bootstrap_form_for @diary_entry.comments.new, :url => comment_diary_entry_path(@diary_entry.user, @diary_entry) do |f| %> <%= f.richtext_field :body, :cols => 80, :rows => 20, :hide_label => true %> <%= f.primary %> <% end %> <% else %> -

<%= t(".login_to_leave_a_comment_html", :login_link => link_to(t(".login"), login_path(:referer => request.fullpath))) %>

+

<%= t(".login_to_leave_a_comment_html", :login_link => link_to(t(".login"), login_path(:referer => request.fullpath))) %>

<% end %>
-- 2.39.5