We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63b1c4f commit 159232dCopy full SHA for 159232d
app/code/Magento/Sales/view/adminhtml/web/order/create/scripts.js
@@ -1202,7 +1202,7 @@ define([
1202
for (var i = 0; i < this.loadingAreas.length; i++) {
1203
var id = this.loadingAreas[i];
1204
if ($(this.getAreaId(id))) {
1205
- if (id in response) {
+ if ((id in response) && id !== 'message' || response[id]) {
1206
$(this.getAreaId(id)).update(response[id]);
1207
}
1208
if ($(this.getAreaId(id)).callback) {
0 commit comments