From 5f6b99b0f1f838a8bd744b99ec2b86e06fcb8150 Mon Sep 17 00:00:00 2001 From: Michaela Brydon Date: Thu, 29 Feb 2024 14:56:00 -0500 Subject: [PATCH] Making base service price never say unverified --- src/iss-components/cart-dropdown/cart-dropdown.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/iss-components/cart-dropdown/cart-dropdown.vue b/src/iss-components/cart-dropdown/cart-dropdown.vue index 579162c9..e9d0da00 100644 --- a/src/iss-components/cart-dropdown/cart-dropdown.vue +++ b/src/iss-components/cart-dropdown/cart-dropdown.vue @@ -10,7 +10,7 @@ href="javascript:void(0)" class="col d-flex justify-content-between py-0"> {{ amountDueLabel }} - {{ getDisplayed(amountDue) }} + {{ getDisplayedByUnverified(amountDue) }}
{{ deductibleLabel }} - {{ getDisplayed(deductible) }} + {{ getDisplayedByUnverified(deductible) }}
{{ BasePriceLabel }} - {{ getDisplayed(baseServicePrice) }} + {{ getFormattedAmount(baseServicePrice) }}
@@ -115,7 +115,7 @@ export default { getTotalLineItemPrice(lineItem) { return lineItem.kitPrice + lineItem.laborAmount + lineItem.sellingPrice; }, - getDisplayed(amount) { + getDisplayedByUnverified(amount) { return this.isUnverified ? VERIFYING_COVERAGE : this.getFormattedAmount(amount);