From 4699423eb478fc9928f549260b503161fbabd779 Mon Sep 17 00:00:00 2001 From: Rob Zolkos Date: Sat, 3 Feb 2024 22:01:58 -0500 Subject: [PATCH] Fix dynamic classname generation (#287) Tailwinds JIT compiler doesn't recognize concatenated partial class names and will therefore not include these in the generated css. Ref: https://tailwindcss.com/docs/content-configuration#dynamic-class-names --- app/views/shared/_auth_messages.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/shared/_auth_messages.html.erb b/app/views/shared/_auth_messages.html.erb index 4ebc5e5a..0cf679b9 100644 --- a/app/views/shared/_auth_messages.html.erb +++ b/app/views/shared/_auth_messages.html.erb @@ -1,5 +1,5 @@ <% flash.each do |type, msg| %> -
<%= msg %>
+
<%= msg %>
<% end %> <% errors.each do |message| %>