Files
fizzy/app/views/conversations/show.html.erb
T
Stanko K.R. 8b21b5a570 Fix search
2025-08-22 07:33:26 +02:00

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 %>