Replaced the well element with the card (bootstrap).

This commit is contained in:
Alex Tselegidis 2020-08-31 18:33:36 +03:00
parent b6dbf1cfd8
commit 935c36be60

View file

@ -316,9 +316,14 @@ window.GeneralFunctions = window.GeneralFunctions || {};
GeneralFunctions.displayMessageBox(EALang.unexpected_issues, EALang.unexpected_issues_message);
$('<div/>', {
'class': 'well',
'class': 'card',
'html': [
$('<div/>', {
'class': 'card-body',
'html': response.message || '→ No error information provided.'
})
]
})
.appendTo('#message_box');
};