diff --git a/src/fmg-components/cart/cart.vue b/src/fmg-components/cart/cart.vue index 8337e78a1..c1f281e3d 100644 --- a/src/fmg-components/cart/cart.vue +++ b/src/fmg-components/cart/cart.vue @@ -11,7 +11,7 @@ aria-label="expand cart" href="javascript:void(0)" class="col d-flex justify-content-between py-0"> - {{ OrderDetailsText }} + {{ cartHeaderText }} {{ getLineItemAmount(amountDue, showCoverageAsPending) }} @@ -1097,9 +1097,19 @@ export default { amountDueText() { return this.getCmsContent("AmountDueTextWidget", "Text"); }, - OrderDetailsText() { + orderDetailsText() { return this.getCmsContent("OrderDetailsTextWidget", "Text"); }, + estimateDetailsText() { + return this.getCmsContent("EstimateDetailsTextWidget", "Text"); + }, + cartHeaderText() { + if (!this.isInsurance && this.shouldHideRecalibration) { + return this.estimateDetailsText; + } else { + return this.orderDetailsText; + } + }, amountPaidText() { return this.getCmsContent("AmountPaidTextWidget", "Text"); }, diff --git a/src/layouts/confirmation/confirmation.vue b/src/layouts/confirmation/confirmation.vue index b497125a1..2e1963288 100644 --- a/src/layouts/confirmation/confirmation.vue +++ b/src/layouts/confirmation/confirmation.vue @@ -66,9 +66,9 @@ :insuranceCompanyName="insuranceCompanyName" :showInsuranceCoverageAs="showInsuranceCoverageAs" :shouldHideRecalibration="shouldHideRecalibration" - :isExpandedOnLoad="false" :isItac="isItac" :isNoComp="isNoComp" + :isExpandedOnLoad="false" :isMSRFeeApplicable="isMSRFeeApplicable" />