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.
2 parents d060ba9 + 159232d commit 3cea4b1Copy full SHA for 3cea4b1
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 ('message' != id || response[id]) {
+ 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