Skip to content

Commit b99355c

Browse files
committed
ACP2E-1143: fix missing tax smaller (< 1 )
1 parent 0bff411 commit b99355c

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ define([
2121
* @override
2222
*/
2323
ifShowValue: function () {
24-
if (parseInt(this.getPureValue()) === 0) { //eslint-disable-line radix
24+
if (this.isFullMode() && this.getPureValue() == 0) { //eslint-disable-line eqeqeq
2525
return isZeroTaxDisplayed;
2626
}
2727

0 commit comments

Comments
 (0)