From 6b0cf5aa96b73829e749d27550cd0d5f45cd4043 Mon Sep 17 00:00:00 2001 From: MaysWind Date: Sun, 16 Jul 2023 23:56:56 +0800 Subject: [PATCH] fix missing plus symbol issue when there are unsupported currencies of sub accounts --- src/stores/account.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/stores/account.js b/src/stores/account.js index bc6e170d..56b7cf5f 100644 --- a/src/stores/account.js +++ b/src/stores/account.js @@ -577,6 +577,10 @@ export const useAccountsStore = defineStore('accounts', { return null; } + if (hasUnCalculatedAmount) { + totalBalance += '+'; + } + return { balance: showAccountBalance ? totalBalance : '***', currency: resultCurrency