Never show close buttons in modal dialogs, this is not needed

This commit is contained in:
Bernd Bestel
2019-09-24 10:24:47 +02:00
parent e727a38071
commit 3b29110500
24 changed files with 33 additions and 3 deletions

View File

@@ -393,7 +393,8 @@ Grocy.FrontendHelpers.ShowGenericError = function(message, exception)
{
bootbox.alert({
title: __t('Error details'),
message: JSON.stringify(exception, null, 4)
message: JSON.stringify(exception, null, 4),
closeButton: false
});
}
});