Swapping loose equality for strict
This commit is contained in:
parent
b0353cf7f7
commit
6043b0ce8f
1 changed files with 1 additions and 1 deletions
|
|
@ -124,7 +124,7 @@ router.afterEach(async (to, from) => {
|
|||
// Update lastPageVisited in the store
|
||||
store.updateLastPageVisited(to.name);
|
||||
|
||||
if (from.redirectedFrom == undefined){
|
||||
if (from.redirectedFrom === undefined){
|
||||
store.clearSaveSessionPromise();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue