summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/components
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2022-09-01 09:20:59 -0300
committerSebastian <sebasjm@gmail.com>2022-09-01 09:20:59 -0300
commit91d5d55edc36bde8ac860fd56b0fd2dcb93b150a (patch)
treebeada3428e64b736fb6845286b5c93a341773fa8 /packages/taler-wallet-webextension/src/components
parent5e7812d63e3e51dbcc9d0d313a3074f9d5d16478 (diff)
downloadwallet-core-91d5d55edc36bde8ac860fd56b0fd2dcb93b150a.tar.gz
wallet-core-91d5d55edc36bde8ac860fd56b0fd2dcb93b150a.tar.bz2
wallet-core-91d5d55edc36bde8ac860fd56b0fd2dcb93b150a.zip
show summary on tx history
Diffstat (limited to 'packages/taler-wallet-webextension/src/components')
-rw-r--r--packages/taler-wallet-webextension/src/components/TransactionItem.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/taler-wallet-webextension/src/components/TransactionItem.tsx b/packages/taler-wallet-webextension/src/components/TransactionItem.tsx
index 6dcee6eca..b59d6fad1 100644
--- a/packages/taler-wallet-webextension/src/components/TransactionItem.tsx
+++ b/packages/taler-wallet-webextension/src/components/TransactionItem.tsx
@@ -119,7 +119,7 @@ export function TransactionItem(props: { tx: Transaction }): VNode {
id={tx.transactionId}
amount={tx.amountEffective}
debitCreditIndicator={"credit"}
- title={"Invoice credit"}
+ title={tx.info.summary || "Invoice"}
timestamp={AbsoluteTime.fromTimestamp(tx.timestamp)}
iconPath={"I"}
pending={tx.pending}
@@ -131,7 +131,7 @@ export function TransactionItem(props: { tx: Transaction }): VNode {
id={tx.transactionId}
amount={tx.amountEffective}
debitCreditIndicator={"debit"}
- title={"Invoice debit"}
+ title={tx.info.summary || "Invoice"}
timestamp={AbsoluteTime.fromTimestamp(tx.timestamp)}
iconPath={"I"}
pending={tx.pending}
@@ -143,7 +143,7 @@ export function TransactionItem(props: { tx: Transaction }): VNode {
id={tx.transactionId}
amount={tx.amountEffective}
debitCreditIndicator={"credit"}
- title={"Transfer credit"}
+ title={tx.info.summary || "Transfer"}
timestamp={AbsoluteTime.fromTimestamp(tx.timestamp)}
iconPath={"T"}
pending={tx.pending}
@@ -155,7 +155,7 @@ export function TransactionItem(props: { tx: Transaction }): VNode {
id={tx.transactionId}
amount={tx.amountEffective}
debitCreditIndicator={"debit"}
- title={"Transfer debit"}
+ title={tx.info.summary || "Transfer"}
timestamp={AbsoluteTime.fromTimestamp(tx.timestamp)}
iconPath={"T"}
pending={tx.pending}