Skip to content

Commit

Permalink
Fix issue magento#26276 with clonning quote billing address
Browse files Browse the repository at this point in the history
  • Loading branch information
Yurii Tvardyi committed Jan 6, 2020
1 parent 3e23510 commit 2687221
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ define([
if (quote.shippingAddress() && billingAddress.getCacheKey() == //eslint-disable-line eqeqeq
quote.shippingAddress().getCacheKey()
) {
address = $.extend({}, billingAddress);
address = $.extend(true, {}, billingAddress);
address.saveInAddressBook = null;
} else {
address = billingAddress;
Expand Down

0 comments on commit 2687221

Please sign in to comment.