From 127393b64afca3ebf996c0f4114c590afb8d145d Mon Sep 17 00:00:00 2001 From: MaysWind Date: Sun, 10 Aug 2025 17:10:59 +0800 Subject: [PATCH] display the "Outstanding Balance" label instead of "Balance" for liability account category in desktop account list page --- src/views/desktop/accounts/ListPage.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/desktop/accounts/ListPage.vue b/src/views/desktop/accounts/ListPage.vue index a183b92d..d8c0d0f7 100644 --- a/src/views/desktop/accounts/ListPage.vue +++ b/src/views/desktop/accounts/ListPage.vue @@ -91,7 +91,7 @@ - {{ tt('Balance') }} + {{ activeAccountCategory?.isLiability ? tt('Outstanding Balance') : tt('Balance') }} {{ activeAccountCategoryTotalBalance }}