return user defect
when on the return-user page and the user navigates back to content site and then goes forward to vue app, the user is being sent back to return user page where it does not hide the loading modal.
This commit is contained in:
parent
535de257be
commit
f1147f490b
1 changed files with 7 additions and 0 deletions
|
|
@ -74,6 +74,13 @@ export default {
|
|||
startOverImage: null,
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
// The global baseMixin.mounted() skips hiding the loading modal when
|
||||
// external-parameter state is active, but those parameters have no
|
||||
// consumer on this interstitial. Clear that state and ensure the loader
|
||||
// is hidden so the user can never get stuck behind it on this page.
|
||||
this.ResetExternalParamsAndHideModal();
|
||||
},
|
||||
methods: {
|
||||
arePagePrerequisitesValid() {
|
||||
return getFunnelCookie() !== null;
|
||||
|
|
|
|||
Loading…
Reference in a new issue