From 9fd70cd77325b0644a572934cfb1beea99655bb3 Mon Sep 17 00:00:00 2001 From: Jan Bader Date: Fri, 22 Apr 2022 21:25:10 +0000 Subject: [PATCH] Optionally add account to grid --- web/src/components/TransactionRow.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/web/src/components/TransactionRow.vue b/web/src/components/TransactionRow.vue index 3b34168..abc80a3 100644 --- a/web/src/components/TransactionRow.vue +++ b/web/src/components/TransactionRow.vue @@ -11,6 +11,7 @@ import Checkbox from "./Checkbox.vue"; const props = defineProps<{ transactionid: string, index: number, + withAccount: bool, }>(); const edit = ref(false); @@ -41,6 +42,9 @@ function getStatusSymbol() { {{ formatDate(TX.Date) }} + + {{ TX.Account }} + {{ TX.TransferAccount ? "Transfer : " + TX.TransferAccount : TX.Payee }}