This commit is contained in:
Katie Kroell 2024-10-25 10:03:04 -04:00
parent dc5b9977d9
commit f3bf9b93c5
2 changed files with 11 additions and 1 deletions

View file

@ -344,6 +344,12 @@ export default {
isRepair() { isRepair() {
return this.mainStore.order.damage.isRepair; return this.mainStore.order.damage.isRepair;
} }
// unverifiedADASReplace() {
// return this.isUnverifiedVisible && this.isADAS && !this.isRepair;
// },
// unverifiedNonADASReplace() {
// return this.isUnverifiedVisible && !this.isADAS && !this.isRepair;
// }
}, },
watch: { watch: {
selectedProvider() { selectedProvider() {
@ -470,6 +476,10 @@ export default {
return ( return (
this.isDeductibleVisible && this.deductibleValue === 0 this.isDeductibleVisible && this.deductibleValue === 0
); );
case 'unverifiedADASReplace':
return this.isUnverifiedVisible && this.isADAS && !this.isRepair;
case 'unverifiedNonADASReplace':
return this.isUnverifiedVisible && !this.isADAS && !this.isRepair;
default: default:
return null; return null;
} }

View file

@ -16,7 +16,7 @@ ref="theForm"
<siteSubHeader <siteSubHeader
id="sub-header" id="sub-header"
cmsWidgetName="SiteSubHeader" cmsWidgetName="SiteSubHeader"
class="mb-0 mt-4" /> class="mb-0 mt-4 text-center" />
</div> </div>
</div> </div>
<div class="row justify-content-center"> <div class="row justify-content-center">