Merge pull request #3243 from Safelite/feature/CASH-2544

CASH-2544: Recal modal text update
This commit is contained in:
Chris 2026-06-26 14:21:48 -04:00 committed by GitHub
commit 5ccb8d56f6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -14,6 +14,7 @@
class="my-4 caption modal-sub-body"
v-if="ModalSubBodyText"
v-html="ModalSubBodyText"></p>
<p class="my-4 caption" v-if="ModalFooter2Text" v-html="ModalFooter2Text"></p>
<slot></slot>
</div>
</modal>
@ -58,6 +59,9 @@ export default {
ModalCloseButtonText() {
return this.getCmsContent(this.cmsWidgetName, "FooterText");
},
ModalFooter2Text() {
return this.getCmsContent(this.cmsWidgetName, "FooterText2");
},
},
methods: {
openModal() {