Files
fizzy/app/views/bubbles/threads/_thread.html.erb
T
2024-10-11 20:14:09 -05:00

14 lines
467 B
Plaintext

<% bubble = thread.bubble %>
<section id="<%= dom_id(bubble, :thread) %>"
class="comments align-center center borderless margin flex flex-column gap-half"
style="--bubble-color: <%= bubble.color %>;"
data-controller="thread"
data-thread-my-comment-class="comment--mine">
<% cache thread do %>
<%= render partial: "bubbles/threads/entry", collection: thread.entries, cache: true %>
<% end %>
<%= render "comments/new", bubble: bubble %>
</section>