Skip to content

Commit 3cea4b1

Browse files
committed
Merge remote-tracking branch 'mpi/MC-37880' into PR-10-14
2 parents d060ba9 + 159232d commit 3cea4b1

File tree

1 file changed

+1
-1
lines changed
  • app/code/Magento/Sales/view/adminhtml/web/order/create

1 file changed

+1
-1
lines changed

app/code/Magento/Sales/view/adminhtml/web/order/create/scripts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1202,7 +1202,7 @@ define([
12021202
for (var i = 0; i < this.loadingAreas.length; i++) {
12031203
var id = this.loadingAreas[i];
12041204
if ($(this.getAreaId(id))) {
1205-
if ('message' != id || response[id]) {
1205+
if ((id in response) && id !== 'message' || response[id]) {
12061206
$(this.getAreaId(id)).update(response[id]);
12071207
}
12081208
if ($(this.getAreaId(id)).callback) {

0 commit comments

Comments
 (0)