From da7a976c4e61d0e24b91c1a38e6c1501dc0cbc64 Mon Sep 17 00:00:00 2001 From: James Cole Date: Tue, 23 Jan 2024 20:21:41 +0100 Subject: [PATCH] Fix https://github.com/firefly-iii/firefly-iii/issues/8446 --- resources/views/list/groups.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/list/groups.twig b/resources/views/list/groups.twig index 3818bcfd6b..00204f61e6 100644 --- a/resources/views/list/groups.twig +++ b/resources/views/list/groups.twig @@ -62,7 +62,7 @@ {{ formatAmountBySymbol(sum.amount*-1, sum.currency_symbol, sum.currency_decimal_places) }}{% if loop.index != group.sums|length %},{% endif %} {% elseif group.transaction_type == 'Transfer' %} - {{ formatAmountBySymbol(sum.amount*-1, sum.currency_symbol, sum.currency_decimal_places, false) }}{% if loop.index != group.sums|length %},{% endif %}X + {{ formatAmountBySymbol(sum.amount*-1, sum.currency_symbol, sum.currency_decimal_places, false) }}{% if loop.index != group.sums|length %},{% endif %} {% else %} {{ formatAmountBySymbol(sum.amount, sum.currency_symbol, sum.currency_decimal_places) }}{% if loop.index != group.sums|length %},{% endif %}