Skip to content

Commit 159232d

Browse files
committed
MC-37880: Shipping address information disappears from order screen while placing order
1 parent 63b1c4f commit 159232d

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 (id in response) {
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)