[F] Fix logic mistake

This commit is contained in:
Hykilpikonna
2019-10-20 21:32:30 -04:00
parent f023c724fa
commit 6af8410698
+1 -1
View File
@@ -74,7 +74,7 @@ export default class Navigation extends Vue
this.$emit('update:activeIndex', newIndex);
// Record or not
if (history == null || !history) return;
if (history != null && !history) return;
// Check url
let url = `/${newIndex}`;