Skip to content

Commit

Permalink
Fix code norm
Browse files Browse the repository at this point in the history
  • Loading branch information
justinefricou committed Nov 28, 2024
1 parent df03423 commit fd35a8c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions geotrek/core/templates/core/error_toast.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<div id="{{id}}" class="toast toast-error text-white" role="alert" aria-live="assertive" aria-atomic="true">
<div id="{{ id }}" class="toast toast-error text-white" role="alert" aria-live="assertive" aria-atomic="true">
<div class="toast-header toast-error-header">
<strong class="mr-auto">{{title}}</strong>
<strong class="mr-auto">{{ title }}</strong>
<button type="button" class="ml-2 mb-1 close toast-error-button" data-dismiss="toast" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="toast-body toast-error-body">
<span>{{message}}</span>
<span>{{ message }}</span>
</div>
</div>

0 comments on commit fd35a8c

Please sign in to comment.