fix to arePrereqsValid method
This commit is contained in:
parent
e8942ac25d
commit
a933503b04
1 changed files with 6 additions and 2 deletions
|
|
@ -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();
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue