Procházet zdrojové kódy

refactor: when adding/editing an account, you get redirected to accounts page

Kristian Vos před 5 roky
rodič
revize
131df9859e

+ 1 - 1
frontend/vue/pages/AddAccount.vue

@@ -24,7 +24,7 @@ export default {
 			this.socket.emit("account.add", account, (res) => {
 				console.log(res);
 				if (res.status === "success") {
-					this.$router.push("/")
+					this.$router.push("/accounts")
 				}
 			});
 		}

+ 1 - 1
frontend/vue/pages/EditAccount.vue

@@ -25,7 +25,7 @@ export default {
 			this.socket.emit("account.editById", account._id, account, (res) => {
 				console.log(res);
 				if (res.status === "success") {
-					this.$router.push("/")
+					this.$router.push("/accounts")
 				}
 			});
 		}