You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When clicking on a link in navigation besides "Log In" or "Log Out" (e.g. "Home" or "Profile"), the first link will redirect correctly, but any others afterward do not respond.
To Reproduce
Steps to reproduce the behavior:
Go to Home page
Click on 'Log In'
Log In
Click on 'Profile'
Click on 'About' or 'Home'
Notice the page does not route but address bar URL will change
Expected behavior
When clicking on any link in the Navbar, regardless of authentication state, the router should navigate to that link or to the authentication page. It should not sit at the same page a user is attempting to navigate away from.
Desktop (please complete the following information):
OS: Mac OSX 11
Browser: Firefox Developer Edition
Version: 67.0b6
Additional context
This bug has only appeared after implementing the Auth0 authentication methods and links into the Navbar, and updating the router accordingly.
The text was updated successfully, but these errors were encountered:
Console is currently displaying the following errors that may be related:
[Vue warn]: Error in nextTick: "TypeError: vm._data is undefined" vue.runtime.esm.js:619TypeError: "vm._data is undefined"
However, there is nowhere in the code I've yet found where either of these values are being called/invoked/referenced. If this is the cause of the routing issue, it is either a bug within the current Vue.js version installed (very unlikely since a prototype of a similar structure has been running fine on the same version), or something else is triggering this error via cascading failure whose root cause is not being caught by Vue itself.
Disabling the LastAction component, since it was throwing an unnoticed warning regarding a prop type mismatch, appears to have resolved the bug. The footer had been throwing a similar warning as well, but was previously disabled. If these are the root cause, then this should resolve the issue.
Describe the bug
When clicking on a link in navigation besides "Log In" or "Log Out" (e.g. "Home" or "Profile"), the first link will redirect correctly, but any others afterward do not respond.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
When clicking on any link in the Navbar, regardless of authentication state, the router should navigate to that link or to the authentication page. It should not sit at the same page a user is attempting to navigate away from.
Desktop (please complete the following information):
Additional context
This bug has only appeared after implementing the Auth0 authentication methods and links into the Navbar, and updating the router accordingly.
The text was updated successfully, but these errors were encountered: