mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-21 22:29:38 +02:00
* Added erblint and fixed offenses * Added erblint bintstub. Included erblint into CI * Merged GitHub Actions tasks for rubocop and erblint into one * Added config for erblint. * Reverted erblint call in the CI
7 lines
248 B
Text
7 lines
248 B
Text
<% flash.each do |type, msg| %>
|
|
<div class="p-4 <%= type == "notice" ? "bg-blue-200" : "bg-red-200" %> rounded-lg"><%= msg %></div>
|
|
<% end %>
|
|
|
|
<% errors.each do |message| %>
|
|
<div class="p-4 bg-red-200 rounded-lg"><%= message %></div>
|
|
<% end %>
|