styling fix, update to store method
This commit is contained in:
parent
a5840245d7
commit
c195cd9778
2 changed files with 20 additions and 3 deletions
|
|
@ -20,6 +20,7 @@
|
||||||
:manualHeadline="AlertFoundMultipleVehiclesHeader"
|
:manualHeadline="AlertFoundMultipleVehiclesHeader"
|
||||||
manualCopy=""
|
manualCopy=""
|
||||||
v-bind:isDismissible="false"
|
v-bind:isDismissible="false"
|
||||||
|
id="multiple-vehicles-alert"
|
||||||
/>
|
/>
|
||||||
<addressVehiclesQuestion
|
<addressVehiclesQuestion
|
||||||
ref="addressVehiclesQuestion"
|
ref="addressVehiclesQuestion"
|
||||||
|
|
@ -248,3 +249,19 @@ export default {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
.alert-provide-vin {
|
||||||
|
font-size: 0.875rem;
|
||||||
|
line-height: 1.4;
|
||||||
|
margin-bottom: 0 !important; // Overrides extra margin-bottom on alert body
|
||||||
|
a {
|
||||||
|
text-underline-offset: 4px; //Per Devyn. This can't be documented in Figma so there is a comment with the Prototype mocks on the Quote page in Figma
|
||||||
|
line-height: inherit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#multiple-vehicles-alert p {
|
||||||
|
margin-bottom: 0 !important; // Overrides extra margin-bottom on alert body
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
@ -904,10 +904,10 @@ export const useMainStore = defineStore({
|
||||||
if (!isSelectedGlassAvailableForVehicle) {
|
if (!isSelectedGlassAvailableForVehicle) {
|
||||||
this.resetDamageAndDependencies();
|
this.resetDamageAndDependencies();
|
||||||
this.resetPartsAndDependencies();
|
this.resetPartsAndDependencies();
|
||||||
|
|
||||||
//Save new values
|
|
||||||
this.updateVehicle(vehicleInfo);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Save new values
|
||||||
|
this.updateVehicle(vehicleInfo);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
saveRegistrationLicensePlateLookup({ isSelectedGlassAvailableForVehicle, vehicleInfo, registrationInfo }) {
|
saveRegistrationLicensePlateLookup({ isSelectedGlassAvailableForVehicle, vehicleInfo, registrationInfo }) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue