diff --git a/src/fmg-components/cart/cart.vue b/src/fmg-components/cart/cart.vue
index f2799d7be..67bc9f961 100644
--- a/src/fmg-components/cart/cart.vue
+++ b/src/fmg-components/cart/cart.vue
@@ -110,7 +110,7 @@
{{ subtotalText }}
{{ getLineItemAmount(subTotal, showCoverageAsPending) }}
-
+
{{ salesTaxText }}
{{ getLineItemAmount(salesTax) }}
@@ -318,6 +318,10 @@ export default {
showCoverageAsVerified() {
return this.showInsuranceCoverageAs === coverageStatus.VERIFIED;
},
+ showSalesTax() {
+ const tax = parseFloat(this.salesTax).toFixed(2);
+ return tax > 0;
+ },
currentDeductible() {
const deductible = this.insuranceDeductible;
if (!(deductible === 0 || deductible > 0)) {