<%# FIXME: Can't use a Current.user reference in a partial that must be cached. Needs to convert to use Stimulus controller pulling from a meta current-id %> <%= tag.div id: dom_id(comment), class: [ "comment flex align-start full-width", { "comment--mine": Current.user == comment.creator } ] do %>
<%= avatar_tag comment.creator, loading: :lazy %>
<%= comment.creator.name %> <%= link_to bucket_bubble_path(comment.bubble.bucket, comment.bubble, anchor: "comment_#{comment.id}"), class: "txt-undecorated" do %> <%= tag.time comment.created_at, class: "comment__timestamp" do %> <%= comment.created_at.strftime("%b %d") %> <% end %> <% end %>
<%= simple_format comment.body %>
<% end %>