CASH-185 fixed issue for value not being persisted upon user navigation
This commit is contained in:
Johnny shultz 2025-03-17 11:38:44 -04:00
parent b15bf1be6f
commit af02cb3d57

View file

@ -512,11 +512,13 @@ export default {
false
);
this.dispatchStoreAction(
this.storeActions.SAVE_WAITLIST_REQUESTED,
this.waitListRequested,
false
);
if(this.waitListRequested !== null && this.waitListRequested !== undefined) {
this.dispatchStoreAction(
this.storeActions.SAVE_WAITLIST_REQUESTED,
this.waitListRequested,
false
);
}
this.$router.navigateWithSaving(this.navigationScenarios.CLICKED_FORWARD, this.$route);
},