diff --git a/src/fmg-components/cart/cart.vue b/src/fmg-components/cart/cart.vue index 242d37c11..1180b3152 100644 --- a/src/fmg-components/cart/cart.vue +++ b/src/fmg-components/cart/cart.vue @@ -5,7 +5,10 @@ class="row vin-toggle flex align-items-center pt-4" :class="[isExpanded ? 'expanded' : '']" @click="toggleIsExpanded()"> - + {{ amountDueText }} {{ getFormattedAmount("", amountDue) }} @@ -14,7 +17,7 @@
- {{screenReaderTotalAmountDueText}} + {{ screenReaderTotalAmountDueText }} {{ getFormattedAmount("", packagePrice) }}
@@ -61,25 +64,40 @@ {{ recycleFeeCartItem.name }} - {{screenReaderRecycleFeeText}}{{ getFormattedAmount(cartItem.category, cartItem.subTotal) }} + {{ screenReaderRecycleFeeText }}{{ getFormattedAmount(cartItem.category, cartItem.subTotal) }}
{{ subtotalText }}{{screenReaderSubTotalText}}{{ getFormattedAmount("", subTotal) }} + >{{ screenReaderSubTotalText }}{{ getFormattedAmount("", subTotal) }}
{{ salesTaxText }}{{screenReaderSalesTaxText}}{{ getFormattedAmount("", salesTax) }} + >{{ screenReaderSalesTaxText }}{{ getFormattedAmount("", salesTax) }}
{{ amountPaidText }}{{screenReaderAmountPaidText}}{{ getFormattedAmount("", amountPaid) }} + >{{ screenReaderAmountPaidText }}{{ getFormattedAmount("", amountPaid) }}
{{ amountDueText }}{{screenReaderTotalAmountDueText}}{{ getFormattedAmount("", amountDue) }} + >{{ screenReaderTotalAmountDueText }}{{ getFormattedAmount("", amountDue) }}
@@ -193,22 +211,22 @@ export default { }, computed: { screenReaderTotalAmountDueText() { - return this.getCmsContent("ScreenReaderTotalAmountDueWidget", "Text"); + return this.getCmsContent("ScreenReaderTotalAmountDueWidget", "Text"); }, screenReaderRemoveVapsText() { - return this.getCmsContent("ScreenReaderRemoveVapsWidget", "Text"); + return this.getCmsContent("ScreenReaderRemoveVapsWidget", "Text"); }, screenReaderRecycleFeeText() { - return this.getCmsContent("ScreenReaderRecycleFeeWidget", "Text"); + return this.getCmsContent("ScreenReaderRecycleFeeWidget", "Text"); }, screenReaderSubTotalText() { - return this.getCmsContent("ScreenReaderSubTotalWidget", "Text"); + return this.getCmsContent("ScreenReaderSubTotalWidget", "Text"); }, screenReaderAmountPaidText() { - return this.getCmsContent("ScreenReaderAmountPaidWidget", "Text"); + return this.getCmsContent("ScreenReaderAmountPaidWidget", "Text"); }, screenReaderSalesTaxText() { - return this.getCmsContent("ScreenReaderSalesTaxWidget", "Text"); + return this.getCmsContent("ScreenReaderSalesTaxWidget", "Text"); }, availableLineItems() { if (!this.lineItems || this.lineItems.length < 1) {