fix to arePrereqsValid method

This commit is contained in:
Kroell 2023-03-06 16:05:00 -05:00
parent e8942ac25d
commit a933503b04

View file

@ -119,9 +119,13 @@ export default {
});
},
methods: {
arePagePrerequisiteValid() {
return true;
arePagePrerequisitesValid() {
if (useMainStore().order.vehicle.carId) {
return true;
}
return false;
},
async forwardButtonAction() {
return this.navigateForward();
},