linting fix
This commit is contained in:
parent
302ddf3090
commit
73c36be620
1 changed files with 5 additions and 5 deletions
|
|
@ -72,11 +72,6 @@ export default {
|
|||
vm.setCmsContent(cmsContentPromise);
|
||||
});
|
||||
},
|
||||
mounted() {
|
||||
if (this.VehiclesFromApi?.length === 1) {
|
||||
this.selectedVehicleVin = this.VehiclesFromApi[0].vin;
|
||||
}
|
||||
},
|
||||
data() {
|
||||
const policyVehicles = useMainStore().pageData(issPageValues.POLICY_VEHICLES);
|
||||
return {
|
||||
|
|
@ -160,6 +155,11 @@ export default {
|
|||
}
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
if (this.VehiclesFromApi?.length === 1) {
|
||||
this.selectedVehicleVin = this.VehiclesFromApi[0].vin;
|
||||
}
|
||||
},
|
||||
methods:
|
||||
{
|
||||
backButtonAction() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue