CASH-2468 add AmFam disclaimer
CASH-2468 add AmFam disclaimer
This commit is contained in:
parent
35c1b1d650
commit
54a0e1179f
1 changed files with 15 additions and 0 deletions
|
|
@ -193,6 +193,8 @@
|
||||||
:isForwardActionDisabled="!meta.valid"
|
:isForwardActionDisabled="!meta.valid"
|
||||||
@back-clicked="backButtonAction"
|
@back-clicked="backButtonAction"
|
||||||
@ForwardClicked="forwardButtonAction" />
|
@ForwardClicked="forwardButtonAction" />
|
||||||
|
|
||||||
|
<span v-if="displayDisclaimerText" class="d-block mb-5 disclaimer-text" v-html="disclaimerText"></span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -300,6 +302,12 @@ export default {
|
||||||
policyHelperText() {
|
policyHelperText() {
|
||||||
return this.clientConfig?.PolicyHelperTextOverrideWidget?.Text;
|
return this.clientConfig?.PolicyHelperTextOverrideWidget?.Text;
|
||||||
},
|
},
|
||||||
|
disclaimerText() {
|
||||||
|
return this.clientConfig?.DisclaimerWidget?.Text;
|
||||||
|
},
|
||||||
|
displayDisclaimerText() {
|
||||||
|
return this.disclaimerText !== null && this.disclaimerText !== "";
|
||||||
|
},
|
||||||
damageTypesQuestionText() {
|
damageTypesQuestionText() {
|
||||||
return this.getCmsContent("DamageTypesWidget", "QuestionText");
|
return this.getCmsContent("DamageTypesWidget", "QuestionText");
|
||||||
},
|
},
|
||||||
|
|
@ -524,4 +532,11 @@ export default {
|
||||||
line-height: 1.625;
|
line-height: 1.625;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.disclaimer-text {
|
||||||
|
font-size: 12px !important;
|
||||||
|
font-weight: 400;
|
||||||
|
color: $gray-600;
|
||||||
|
line-height: 1.625;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
Loading…
Reference in a new issue