Skip to content

Commit 0ea48d2

Browse files
authored
Merge pull request #842 from liquality/fix/check-for-balances
fix: check for initial load on balances
2 parents 9e0a2ab + 3cf6d65 commit 0ea48d2

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

src/components/WalletAccounts.vue

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,7 @@
3030
</div>
3131
</div>
3232
</template>
33-
<template
34-
#detail-sub
35-
v-if="account.totalFiatBalance && account.loadingInitialBalance === false"
36-
>
33+
<template #detail-sub v-if="account.totalFiatBalance">
3734
{{ formatFiatUI(formatFiat(account.totalFiatBalance)) }}
3835
</template>
3936
<template v-else> Loading... </template>
@@ -61,10 +58,7 @@
6158
Ledger
6259
</div>
6360
</template>
64-
<template
65-
#detail-sub
66-
v-if="account.totalFiatBalance && account.loadingInitialBalance === false"
67-
>
61+
<template #detail-sub v-if="account.totalFiatBalance">
6862
{{ formatFiatUI(formatFiat(account.totalFiatBalance)) }}
6963
</template>
7064
<template v-else> Loading... </template>

0 commit comments

Comments
 (0)