add comment

This commit is contained in:
MaysWind
2020-12-05 22:39:39 +08:00
parent b7802c20e4
commit 141e72b52a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -457,7 +457,7 @@ export default {
return;
}
const id = event.el.id.substr(8);
const id = event.el.id.substr(8); // account_
const account = this.$utilities.getAccountByAccountId(this.accounts, id);
if (!account || !this.accounts[account.category] || !this.accounts[account.category][event.to]) {
+1 -1
View File
@@ -253,7 +253,7 @@ export default {
return;
}
const id = event.el.id.substr(9);
const id = event.el.id.substr(9); // category_
let category = null;
for (let i = 0; i < this.categories.length; i++) {