Skip to content

Commit

Permalink
Fix invisible alerts
Browse files Browse the repository at this point in the history
  • Loading branch information
smnandre committed Oct 22, 2023
1 parent 55812c7 commit 7dc0bc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/default/_flash_messages.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
{% for type, messages in app.flashes %}
{% for message in messages %}
{# Bootstrap alert, see https://getbootstrap.com/docs/3.4/components/#alerts #}
<div class="alert alert-dismissible alert-{{ type }} fade in" role="alert">
<div class="alert alert-dismissible alert-{{ type }} fade" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="{{ 'action.close'|trans }}">
<span aria-hidden="true">&times;</span>
</button>
Expand Down

0 comments on commit 7dc0bc8

Please sign in to comment.