diff --git a/src/fmg-components/cart/cart.vue b/src/fmg-components/cart/cart.vue index ca7037d4f..649dc2db0 100644 --- a/src/fmg-components/cart/cart.vue +++ b/src/fmg-components/cart/cart.vue @@ -985,7 +985,10 @@ export default { if (!this.showAsPaid) { return 0; } - return this.subTotal + this.salesTax; + + // unary plus operator to convert string amount to numeric so we can add them together + var amtPaid = +this.subTotal + +this.salesTax; + return amtPaid; }, }, components: {