X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/832b96b75ac05177e6baad7b414066ccfd7cfa51..091bf88a5ff32363e9d4cc67804be074fdf501a1:/app/views/layouts/_flash.html.erb
diff --git a/app/views/layouts/_flash.html.erb b/app/views/layouts/_flash.html.erb
index da559d55c..8a7ed6fe4 100644
--- a/app/views/layouts/_flash.html.erb
+++ b/app/views/layouts/_flash.html.erb
@@ -1,11 +1,13 @@
-<% if flash[:error] %>
-
<%= flash[:error] %>
-<% end %>
-
-<% if flash[:warning] %>
- <%= flash[:warning] %>
-<% end %>
-
-<% if flash[:notice] %>
- <%= flash[:notice] %>
+<% [[: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",
+ :data => { :turbo_temporary => true } do %>
+
+ <%= notice_svg_tag %>
+
+
+ <%= render_flash flash[flash_type] %>
+
+ <% end %>
+ <% end %>
<% end %>