Files
fizzy/app/views/conversations/show.html.erb
T
2025-08-13 15:14:12 +02:00

10 lines
486 B
Plaintext

<%= turbo_frame_tag "conversation", target: "_top" do %>
<%= turbo_stream_from Current.user, :conversation %>
<div class="conversation">
<%= turbo_frame_tag dom_id(@conversation, :messages_container), src: conversation_messages_path, target: "_top" %>
<%= render partial: "conversations/show/thinking_indicator", locals: { conversation: @conversation } %>
<%= render partial: "conversations/show/composer", locals: { conversation: @conversation } %>
</div>
<% end %>