Building it with rubies on Rails
When devise attempts to log in and it fails it says alert type as (alert)
Am trying to change it to show Danger
I apologize in advance only been doing this for Less 3 to 4 months just looking for some help
My attempt to use a helper class to try to fix the situation the first time
<% flash.each do |type, msg| %>
<% if type === 'alert' %>
<% type = 'danger' %>
<% end %>
<%= content_tag :div, msg, class: "alert alert-#{type}", role:"alert" %>
<% end %>
</div>