SSR-1116. Order Confirmation page: Add UI element for email confirmation. (#595)

This commit is contained in:
Johan Gunawan 2024-03-20 14:34:18 -04:00 committed by GitHub
parent 5a73395a0f
commit 24496fe9b2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -47,6 +47,9 @@
v-html="appointmentWordingText2">
</div>
</div>
<div
class="email-confirmation-text"
v-html="confirmationEmailText" />
<siteFooter
v-if="carrierUrl"
ref="siteFooter"
@ -118,6 +121,11 @@ export default {
carrierUrl() {
return this.mainStore.issConfig.successReturnURL;
},
confirmationEmailText() {
return this.getCmsContent('EmailConfirmationWordingWidget', 'BodyText')
?.replaceAll('&lt;', '<')
?.replaceAll('&gt;', '>');
},
orderConfirmationHeaderText() {
return this.getCmsContent('OrderConfirmationContent', 'HeaderText');
},
@ -338,4 +346,11 @@ $page-side-padding: 1.5rem;
color: $black;
}
}
.email-confirmation-text {
:deep(a) {
font-weight: $font-weight-bold;
text-decoration: none;
}
}
</style>