10 lines
486 B
Plaintext
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 %>
|
|
|