Merge pull request #143 from Safelite/feature/CSR-258

Feature/csr 258
This commit is contained in:
CarlNation 2022-01-13 13:28:50 -05:00 committed by GitHub
commit b6b86199bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,6 +12,18 @@
/> />
</h5> </h5>
</div> </div>
<div class="d-flex align-items-center justify-content-center container-fluid overflow-hidden">
<p class="text-center small fw-normal mb-0">
<span>
{{ subText }}
</span>
<buttonBack
v-if="hasBackButton"
:backButtonAccessibleText="backButtonAccessibleText"
@click-event="clickEvent"
/>
</p>
</div>
</div> </div>
</template> </template>
@ -23,6 +35,7 @@ export default {
data() { data() {
return { return {
text: '', text: '',
subText: ''
} }
}, },
props: { props: {
@ -38,6 +51,7 @@ export default {
}, },
initializeComponent(cmsContent) { initializeComponent(cmsContent) {
this.text = cmsContent.HeaderText; this.text = cmsContent.HeaderText;
this.subText = cmsContent.HeaderSubText;
} }
}, },
}; };