]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/issues/_comments.html.erb
Merge remote-tracking branch 'upstream/pull/3543'
[rails.git] / app / views / issues / _comments.html.erb
index 046e80163c98001c4abe03675399eaf7d5aa73f2..390977b655601e54b3710ee93b9b4f7025517014 100644 (file)
@@ -2,14 +2,14 @@
   <% comments.each do |comment| %>
     <div class="row">
       <div class="col-auto">
-        <%= link_to user_thumbnail(comment.user, :class => "user_image_no_margins"), user_path(comment.user) %>
+        <%= link_to user_thumbnail(comment.user), user_path(comment.user) %>
       </div>
       <div class="col">
         <p class="text-muted mb-0">
           <%= t ".comment_from_html", :user_link => link_to(comment.user.display_name, user_path(comment.user)),
                                       :comment_created_at => l(comment.created_at.to_datetime, :format => :friendly) %>
         </p>
-        <p><%= comment.body %></p>
+        <p><%= comment.body.to_html %></p>
       </div>
     </div>
     <hr>