From 28886a1ba3d217375e63f58519bd7f67e89ba0f4 Mon Sep 17 00:00:00 2001 From: Anton Khorev Date: Tue, 10 Sep 2024 12:24:08 +0300 Subject: [PATCH] Mark flash messages as temporary --- app/views/layouts/_flash.html.erb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/views/layouts/_flash.html.erb b/app/views/layouts/_flash.html.erb index 251838bca..8a7ed6fe4 100644 --- a/app/views/layouts/_flash.html.erb +++ b/app/views/layouts/_flash.html.erb @@ -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 %>
<%= notice_svg_tag %>
-- 2.39.5