Skip to content

Commit

Permalink
New <button /> from Bootstrap v5
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminCharmes committed Dec 3, 2024
1 parent cef2a01 commit 5b3c114
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions webapp/src/components/Modal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,13 @@
<h5 class="modal-title">
<slot name="header"></slot>
</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true" @click="closeModal">&times;</span>
</button>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
@click="closeModal"
></button>
</div>
<div class="modal-body">
<slot name="body"></slot>
Expand Down

0 comments on commit 5b3c114

Please sign in to comment.