You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

25 lines
691 B

<div
id='flashbar'
style='max-width: calc(50% - 20px)'
data-controller='flash' data-turbo-permanent
data-action="popup-toast@window->flash#popup"
>
<!--
here is a shadow root which serves as a placeholder for the toaster area.
max-width gets inherited from this node.
data-turbo-permant prevents morphing to dismiss active toasts
-->
</div>
<div class='hidden'
data-controller='flash'
data-action="turbo:load@window->flash#onLoad"
>
<% flash.each do |type, messages| %>
<% Array(messages).each do |message| %>
<div data-flash-target='flashItem' data-type='<%= type %>'>
<%= message %>
</div>
<% end %>
<% end %>
</div>