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 false
); );
this.dispatchStoreAction( if(this.waitListRequested !== null && this.waitListRequested !== undefined) {
this.storeActions.SAVE_WAITLIST_REQUESTED, this.dispatchStoreAction(
this.waitListRequested, this.storeActions.SAVE_WAITLIST_REQUESTED,
false this.waitListRequested,
); false
);
}
this.$router.navigateWithSaving(this.navigationScenarios.CLICKED_FORWARD, this.$route); this.$router.navigateWithSaving(this.navigationScenarios.CLICKED_FORWARD, this.$route);
}, },