fix the account list page shows skeleton and account info at the same time when reloading the account list for mobile version

This commit is contained in:
MaysWind
2025-02-05 21:46:08 +08:00
parent 00f62fd608
commit 9797e7e58f
+1 -1
View File
@@ -69,7 +69,7 @@
<div :key="accountCategory.type"
v-for="accountCategory in AccountCategory.values()"
v-show="(showHidden && hasAccount(accountCategory, false)) || hasAccount(accountCategory, true)">
v-show="!loading && ((showHidden && hasAccount(accountCategory, false)) || hasAccount(accountCategory, true))">
<f7-list strong inset dividers sortable class="list-has-group-title account-list margin-vertical"
:sortable-enabled="sortable"
v-if="allCategorizedAccountsMap[accountCategory.type]"