Skip to content

Commit 999cce1

Browse files
MAGETWO-55301: Enable tax rate calculation on address change without shipping methods
1 parent f3ea749 commit 999cce1

File tree

1 file changed

+3
-1
lines changed
  • app/code/Magento/Tax/view/frontend/web/js/view/checkout/summary

1 file changed

+3
-1
lines changed

app/code/Magento/Tax/view/frontend/web/js/view/checkout/summary/tax.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ define([
2121
isZeroTaxDisplayed = window.checkoutConfig.isZeroTaxDisplayed;
2222

2323
quote.shippingAddress.subscribe(function () {
24-
totalsDefaultProcessor.estimateTotals(quote.shippingAddress());
24+
if (quote.shippingAddress().isEditable()) {
25+
totalsDefaultProcessor.estimateTotals(quote.shippingAddress());
26+
}
2527
});
2628

2729
return Component.extend({

0 commit comments

Comments
 (0)