Fix modal dialog

This commit is contained in:
LordGrey 2024-04-29 22:23:19 +02:00
parent f3b0223210
commit 64fcea3cdd

View File

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