Преглед на файлове

feat(Admin): Store last visited admin tab and reopen on next visit

Owen Diffey преди 2 години
родител
ревизия
9cdb6f4ce1
променени са 1 файла, в които са добавени 6 реда и са изтрити 1 реда
  1. 6 1
      frontend/src/pages/Admin/index.vue

+ 6 - 1
frontend/src/pages/Admin/index.vue

@@ -212,7 +212,11 @@ export default {
 					this.showTab("punishments");
 					break;
 				default:
-					this.showTab("verifiedsongs");
+					if (localStorage.getItem("lastAdminPage")) {
+						this.showTab(localStorage.getItem("lastAdminPage"));
+					} else {
+						this.showTab("verifiedsongs");
+					}
 			}
 		},
 		showTab(tab) {
@@ -222,6 +226,7 @@ export default {
 					block: "nearest"
 				});
 			this.currentTab = tab;
+			localStorage.setItem("lastAdminPage", tab);
 		}
 	}
 };