Merge pull request #841 from Safelite/feature/richardson/SSR-1466
move disclaimer text under footer
This commit is contained in:
commit
bd4d514548
2 changed files with 16 additions and 5 deletions
|
|
@ -123,7 +123,7 @@ export default {
|
|||
}
|
||||
},
|
||||
watch: {
|
||||
$route(newVal, oldVal) {
|
||||
$route() {
|
||||
this.closeModal();
|
||||
}
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
<!-- eslint-disable vue/no-v-html -->
|
||||
<template>
|
||||
<Form
|
||||
ref="theForm"
|
||||
|
|
@ -71,10 +72,6 @@
|
|||
isRequired
|
||||
:validationRules="rules.selectionRequired">
|
||||
</buttonQuestion>
|
||||
<textBlock
|
||||
v-if="isQuoteDisplayed"
|
||||
:customText="disclaimerText"
|
||||
typeStyle="caption" />
|
||||
<siteFooter
|
||||
:ref="SITE_FOOTER_REF_NAME"
|
||||
class="mt-5"
|
||||
|
|
@ -82,6 +79,10 @@
|
|||
:isForwardActionDisabled="!meta.valid"
|
||||
@backClicked="navigateBackByVehicleQuestions"
|
||||
@forwardClicked="navigateForward" />
|
||||
<textBlock
|
||||
v-if="isQuoteDisplayed"
|
||||
:customText="disclaimerText"
|
||||
typeStyle="caption" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -347,6 +348,7 @@ export default {
|
|||
selectedProvider() {
|
||||
if (this.selectedProvider && this.selectedProvider !== SAFELITE_PROVIDER) {
|
||||
this.$refs[this.CANCEL_CLAIM_REF_NAME].openModal();
|
||||
this.selectedProvider = '';
|
||||
}
|
||||
},
|
||||
nextStepsBody(newValue, oldValue) {
|
||||
|
|
@ -516,6 +518,15 @@ export default {
|
|||
text-align: left;
|
||||
}
|
||||
}
|
||||
.button-question {
|
||||
:deep(fieldset) {
|
||||
div.col:last-child {
|
||||
label {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
:deep .deductible-modal {
|
||||
|
|
|
|||
Loading…
Reference in a new issue