<%= turbo_frame_tag dom_id(comment) do %>
<%= link_to comment.creator.name, user_path(comment.creator), class: "txt-ink btn btn--plain fill-transparent", data: { turbo_frame: "_top" } %> <%= link_to bucket_bubble_path(comment.bubble.bucket, comment.bubble, anchor: "comment_#{comment.id}"), class: "txt-undecorated" do %> <%= local_datetime_tag comment.created_at, style: :shortdate, class: "comment__timestamp" %> <% end %> <% if comment.creator == Current.user %> <%= link_to edit_bucket_bubble_comment_path(comment.bubble.bucket, comment.bubble, comment), class: "btn txt-small btn--plain fill-transparent", style: "font-size: 0.4em; opacity: 0.5;" do %> <%= image_tag "menu-dots-horizontal.svg", class: "icon colorize--black" %> Edit <% end %> <% end %>
<%= sanitize comment.body_html %>
<%= render "comments/reactions/reactions", comment: comment %>
<% end %>