Skip to content

Commit 30d1243

Browse files
committed
MC-37880: Shipping address information disappears from order screen while placing order
1 parent 5977749 commit 30d1243

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) {
12061206
$(this.getAreaId(id)).update(response[id]);
12071207
}
12081208
if ($(this.getAreaId(id)).callback) {

0 commit comments

Comments
 (0)