瀏覽代碼

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

Kristian Vos 5 年之前
父節點
當前提交
131df9859e
共有 2 個文件被更改,包括 2 次插入2 次删除
  1. 1 1
      frontend/vue/pages/AddAccount.vue
  2. 1 1
      frontend/vue/pages/EditAccount.vue

+ 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")
 				}
 			});
 		}