prettier
This commit is contained in:
parent
7bd9b8ae20
commit
87614ce196
2 changed files with 22 additions and 10 deletions
|
|
@ -28,7 +28,10 @@
|
||||||
v-model="policyNumber"
|
v-model="policyNumber"
|
||||||
inputId="policyNumber"
|
inputId="policyNumber"
|
||||||
validationRules="policy-number-required" />
|
validationRules="policy-number-required" />
|
||||||
<span v-if="displayPolicyHelperText" class="d-block mb-5 helper-text" v-html="policyHelperText"></span>
|
<span
|
||||||
|
v-if="displayPolicyHelperText"
|
||||||
|
class="d-block mb-5 helper-text"
|
||||||
|
v-html="policyHelperText"></span>
|
||||||
|
|
||||||
<datePickerPopup
|
<datePickerPopup
|
||||||
v-if="displayDateOfBirth"
|
v-if="displayDateOfBirth"
|
||||||
|
|
@ -194,7 +197,10 @@
|
||||||
@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>
|
<span
|
||||||
|
v-if="displayDisclaimerText"
|
||||||
|
class="d-block mb-5 disclaimer-text"
|
||||||
|
v-html="disclaimerText"></span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -284,10 +290,16 @@ export default {
|
||||||
return this.clientConfig?.ClientLogoWidget?.Image || "";
|
return this.clientConfig?.ClientLogoWidget?.Image || "";
|
||||||
},
|
},
|
||||||
pageTitleText() {
|
pageTitleText() {
|
||||||
return this.clientConfig?.PageTitleOverrideWidget?.Text || this.getCmsContent("PageTitleWidget", "Text");
|
return (
|
||||||
|
this.clientConfig?.PageTitleOverrideWidget?.Text ||
|
||||||
|
this.getCmsContent("PageTitleWidget", "Text")
|
||||||
|
);
|
||||||
},
|
},
|
||||||
pageInstructionsText() {
|
pageInstructionsText() {
|
||||||
return this.clientConfig?.PageInstructionsOverrideWidget?.Text || this.getCmsContent("PageInstructionsWidget", "Text");
|
return (
|
||||||
|
this.clientConfig?.PageInstructionsOverrideWidget?.Text ||
|
||||||
|
this.getCmsContent("PageInstructionsWidget", "Text")
|
||||||
|
);
|
||||||
},
|
},
|
||||||
isUSAA() {
|
isUSAA() {
|
||||||
return (
|
return (
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue