diff --git a/assets/js/general_functions.js b/assets/js/general_functions.js index 20fe987a..bc1a0c4f 100755 --- a/assets/js/general_functions.js +++ b/assets/js/general_functions.js @@ -316,8 +316,13 @@ window.GeneralFunctions = window.GeneralFunctions || {}; GeneralFunctions.displayMessageBox(EALang.unexpected_issues, EALang.unexpected_issues_message); $('
', { - 'class': 'well', - 'html': response.message || '→ No error information provided.' + 'class': 'card', + 'html': [ + $('', { + 'class': 'card-body', + 'html': response.message || '→ No error information provided.' + }) + ] }) .appendTo('#message_box'); };