hide hidden sub-account

This commit is contained in:
MaysWind
2025-08-02 23:53:11 +08:00
parent 51c33d7e83
commit 3781327c58
+5
View File
@@ -91,6 +91,11 @@ export const useAccountsStore = defineStore('accounts', () => {
if (account.subAccounts) {
for (let j = 0; j < account.subAccounts.length; j++) {
const subAccount = account.subAccounts[j];
if (subAccount.hidden) {
continue;
}
allVisibleAccounts.push(subAccount);
}
}