Skip to content
Snippets Groups Projects
Commit f97322cd authored by Mauricio Giacomini Girardello's avatar Mauricio Giacomini Girardello
Browse files

calling html_safe method in alerts and notices messages

parent b8c99648
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@
<div class="alert alert-info" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Fechar">
<span aria-hidden="true">&times;</span></button>
<%= notice %>
<%= notice.html_safe %>
</div>
<% end %>
......@@ -25,7 +25,7 @@
<div class="alert alert-danger alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Fechar">
<span aria-hidden="true">&times;</span></button>
<%= alert %>
<%= alert.html_safe %>
</div>
<% end %>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment