a8a8a46efa
to prepare for turbo responses to set a flash message.
10 lines
302 B
Plaintext
10 lines
302 B
Plaintext
<%= turbo_frame_tag :flash do %>
|
|
<% if notice = flash[:notice] || flash[:alert] %>
|
|
<div class="flash" data-controller="element-removal" data-action="animationend->element-removal#remove">
|
|
<div class="flash__inner shadow">
|
|
<%= notice %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|