Skip to content

Commit

Permalink
Merge pull request #30 from uclouvain/dev
Browse files Browse the repository at this point in the history
fix button ok
  • Loading branch information
mathieuzen authored May 6, 2024
2 parents 59dfb05 + 77cfe41 commit 48799dc
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions osis_async/templates/osis_async/modal_async_progress.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,10 @@
{% endif %}
>
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
{% block modal_title %}{% endblock modal_title %}
<button type="button" class="close hide-bs3-element" data-dismiss="modal">×</button>
{% block modal_title %}{% endblock modal_title %}
<button type="button" class="btn-close d-none display-bs5-element"
data-dismiss="modal" data-bs-dismiss="modal" aria-label="{% trans 'close' %}"></button>
</div>
<div class="modal-body">
<div class="progress">
Expand Down Expand Up @@ -68,7 +70,7 @@
</div>
<div class="modal-footer">
{% block modal_footer %}
<button type="button" class="btn btn-secondary" data-dismiss="modal">{% trans 'Ok' %}</button>
<button type="button" class="btn btn-secondary" data-dismiss="modal" data-bs-dismiss="modal">{% trans 'Ok' %}</button>
{% endblock %}
</div>
</div>

0 comments on commit 48799dc

Please sign in to comment.