Merge branch 'develop' into feature/SSR-683

This commit is contained in:
Katie Kroell 2024-04-24 09:19:26 -04:00
commit ccee1c319d

View file

@ -27,25 +27,25 @@
class="text-center mt-4 mb-1 fw-bold text-black" class="text-center mt-4 mb-1 fw-bold text-black"
v-html="secondaryText"></div> v-html="secondaryText"></div>
<div <div
v-if="verifiedDeductible" v-if="isDeductibleVisible"
class="d-flex justify-content-center cost"> class="d-flex justify-content-center cost">
{{ deductibleForDisplay }} {{ formatAmountInDollars(deductibleValue) }}
</div> </div>
<div <div
v-if="isQuoteDisplayed" v-if="isQuoteDisplayed"
class="d-flex justify-content-center cost mb-0"> class="d-flex justify-content-center cost mb-0">
{{ servicePriceForDisplay }} {{ formatAmountInDollars(totalServicePrice) }}
</div> </div>
<div <div
v-if="verifiedITAC" v-if="isITACQuoteVisible"
class="d-flex justify-content-center mb-4 deductible-text"> class="d-flex justify-content-center mb-4 deductible-text">
{{ deductibleText }}&nbsp; {{ deductibleText }}&nbsp;
<span class="text-success fw-bold">{{ <span class="text-success fw-bold">{{
deductibleForDisplay formatAmountInDollars(deductibleValue)
}}</span> }}</span>
</div> </div>
<alert <alert
v-if="verifiedITAC" v-if="isITACQuoteVisible"
ref="verifiedITACAlert" ref="verifiedITACAlert"
class="mb-5" class="mb-5"
cmsWidgetName="VerifiedITACAlert" cmsWidgetName="VerifiedITACAlert"