Merge remote-tracking branch 'origin/develop' into feature/CASH-2880

This commit is contained in:
scottkiener-at-safelite 2026-06-29 08:22:24 -04:00
commit dcf6a60825

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() {