From 4ddfd337b6a6ff49bf31b77c07fab6c4e90f925a Mon Sep 17 00:00:00 2001 From: Stephan Richter Date: Sun, 28 Jun 2026 13:51:59 +0200 Subject: [PATCH] swapped external costs Signed-off-by: Stephan Richter --- frontend/src/routes/accounting/account.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/routes/accounting/account.svelte b/frontend/src/routes/accounting/account.svelte index c71ab133..6edc2758 100644 --- a/frontend/src/routes/accounting/account.svelte +++ b/frontend/src/routes/accounting/account.svelte @@ -156,11 +156,11 @@ {/each} {t('external gains')}
- {sums[0].toFixed(2)} {account.currency} + {sums[-1].toFixed(2)} {account.currency} {t('external expenses')}
- {sums[-1].toFixed(2)} {account.currency} + {sums[0].toFixed(2)} {account.currency}