Fix dialog does not close

This commit is contained in:
LordGrey 2024-04-11 20:52:28 +02:00
parent b056e12532
commit 4d90309911

View File

@ -320,7 +320,7 @@ function showInfoDialog(type, header, message) {
$(document).on('click', '[data-dismiss-modal]', function () {
var target = $(this).attr('data-dismiss-modal');
$.find(target).modal('hide');
$(target).modal('hide');
});
}