16 lines
484 B
Plaintext
16 lines
484 B
Plaintext
<%= turbo_frame_tag "bar-content" do %>
|
|
<%= turbo_stream_from Current.user, :conversation %>
|
|
|
|
<div class="conversation">
|
|
<div class="conversation__header">
|
|
<button class="btn txt-x-small" data-action="bar#reset">
|
|
<%= icon_tag "remove-med" %>
|
|
<span class="for-screen-reader">Close</span>
|
|
</button>
|
|
</div>
|
|
|
|
<%= turbo_frame_tag dom_id(@conversation, :messages_container), src: conversation_messages_path, target: "_top" %>
|
|
</div>
|
|
<% end %>
|
|
|