remove unused code

This commit is contained in:
MaysWind
2023-07-17 23:05:48 +08:00
parent 0255213934
commit f0ef9ad51e
4 changed files with 0 additions and 31 deletions
-10
View File
@@ -259,16 +259,6 @@ export default {
categorizedAccounts() {
return this.accountsStore.allCategorizedAccounts;
},
allAccountCount() {
return this.accountsStore.allAvailableAccountsCount;
},
noAvailableAccount() {
if (this.showHidden) {
return this.accountsStore.allAvailableAccountsCount < 1;
} else {
return this.accountsStore.allVisibleAccountsCount < 1;
}
},
netAssets() {
const netAssets = this.accountsStore.getNetAssets(this.showAccountBalance);
return this.getDisplayCurrency(netAssets, this.defaultCurrency);