Merge pull request #2581 from Safelite/CASH-926-move-charitable-donation-in-cart

CASH-926 move FL donation to other location in cart.
This commit is contained in:
bmauger 2025-06-11 08:24:21 -04:00 committed by GitHub
commit bc3d1ca0be
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -117,6 +117,10 @@
<span>{{ amountPaidText }}</span>
<span>{{ getLineItemAmount(amountPaid) }}</span>
</div>
<div v-if="donationCartItem" class="donation-amount">
<span>{{ donationCartItemName }}</span>
<span>{{ getLineItemAmount(donationCartItem.subTotal) }}</span>
</div>
<div class="amount-due">
<span>{{ amountDueText }}</span>
<span>{{ getLineItemAmount(amountDue, showCoverageAsPending) }}</span>
@ -472,10 +476,6 @@ export default {
});
}
if (this.donationCartItem) {
cartItems.push(this.donationCartItem);
}
return cartItems;
},
},