Fixing coverage statement page post merge
This commit is contained in:
parent
1ae3027703
commit
36a28cb496
1 changed files with 6 additions and 6 deletions
|
|
@ -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 }}
|
{{ deductibleText }}
|
||||||
<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"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue