]> git.openstreetmap.org Git - rails.git/commitdiff
Mark flash messages as temporary
authorAnton Khorev <tony29@yandex.ru>
Tue, 10 Sep 2024 09:24:08 +0000 (12:24 +0300)
committerAnton Khorev <tony29@yandex.ru>
Tue, 10 Sep 2024 09:24:08 +0000 (12:24 +0300)
app/views/layouts/_flash.html.erb

index 251838bca348cf0271c8c58d5898d183ba4124bd..8a7ed6fe4b643bbb08a9b8b8cdfec58f298581d7 100644 (file)
@@ -1,6 +1,7 @@
 <% [[:error, :danger], [:warning, :warning], [:notice, :success]].each do |flash_type, bootstrap_type| %>
   <% if flash[flash_type] %>
-    <%= tag.div :class => "alert alert-#{bootstrap_type} row mx-0 mb-0 p-3 rounded-0 align-items-center" do %>
+    <%= tag.div :class => "alert alert-#{bootstrap_type} row mx-0 mb-0 p-3 rounded-0 align-items-center",
+                :data => { :turbo_temporary => true } do %>
       <div class="col-auto">
         <%= notice_svg_tag %>
       </div>