Parcourir la source

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

Kristian Vos il y a 3 ans
Parent
commit
0577a36dfc
1 fichiers modifiés avec 10 ajouts et 4 suppressions
  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`);
+						}
 					}
 			}
 		},