Skip to content

Commit

Permalink
ENGCOM-6615: Fix issue #26276 with clonning quote billing address str…
Browse files Browse the repository at this point in the history
…eet #26279
  • Loading branch information
slavvka committed Feb 10, 2020
2 parents 1bc2445 + f4fa681 commit d0c8bc4
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 d0c8bc4

Please sign in to comment.