Skip to content

Commit

Permalink
fix: Notification not being shown using Flask Flash
Browse files Browse the repository at this point in the history
  • Loading branch information
lvmasterrj authored and vicwomg committed Dec 24, 2024
1 parent 001026f commit 162aa3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pikaraoke/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@

{% if get_flashed_messages() %}
{% for category, message in get_flashed_messages(with_categories=true) %}
<div id="notification" class="notification {{category}}" style="display: none">
<div id="notification" class="notification {{category}}">
<button id="notification-close" class="delete"></button>
<div class="flash">{{ message }}</div>
</div>
Expand Down

0 comments on commit 162aa3d

Please sign in to comment.