Browse Source

refactor: automatically redirect user from /admin to an admin page URL

Kristian Vos 3 years ago
parent
commit
0577a36dfc
1 changed files with 10 additions and 4 deletions
  1. 10 4
      frontend/src/pages/Admin/index.vue

+ 10 - 4
frontend/src/pages/Admin/index.vue

@@ -167,10 +167,16 @@ export default {
 					this.showTab("punishments");
 					break;
 				default:
-					if (localStorage.getItem("lastAdminPage")) {
-						this.showTab(localStorage.getItem("lastAdminPage"));
-					} else {
-						this.showTab("songs");
+					if (path.startsWith("/admin")) {
+						if (localStorage.getItem("lastAdminPage")) {
+							this.$router.push(
+								`/admin/${localStorage.getItem(
+									"lastAdminPage"
+								)}`
+							);
+						} else {
+							this.$router.push(`/admin/songs`);
+						}
 					}
 			}
 		},