From dc842eab6b7a3b2e891ee89a325ec73e04d3be95 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Tue, 3 May 2022 00:16:03 -0300 Subject: deposit from payto --- packages/taler-wallet-webextension/src/wallet/Transaction.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'packages/taler-wallet-webextension/src/wallet/Transaction.tsx') diff --git a/packages/taler-wallet-webextension/src/wallet/Transaction.tsx b/packages/taler-wallet-webextension/src/wallet/Transaction.tsx index 6f7c208da..bcf6114a1 100644 --- a/packages/taler-wallet-webextension/src/wallet/Transaction.tsx +++ b/packages/taler-wallet-webextension/src/wallet/Transaction.tsx @@ -19,6 +19,7 @@ import { Amounts, NotificationType, parsePaytoUri, + parsePayUri, Transaction, TransactionType, WithdrawalType, @@ -32,13 +33,14 @@ import { BankDetailsByPaytoType } from "../components/BankDetailsByPaytoType.js" import { ErrorTalerOperation } from "../components/ErrorTalerOperation.js"; import { Loading } from "../components/Loading.js"; import { LoadingError } from "../components/LoadingError.js"; -import { Part } from "../components/Part.js"; +import { Part, PartPayto } from "../components/Part.js"; import { Button, ButtonDestructive, ButtonPrimary, CenteredDialog, InfoBox, + LargeText, ListOfProducts, Overlay, RowBorderGray, @@ -428,6 +430,7 @@ export function TransactionView({ Amounts.parseOrThrow(transaction.amountEffective), Amounts.parseOrThrow(transaction.amountRaw), ).amount; + const payto = parsePaytoUri(transaction.targetPaytoUri); return ( @@ -456,6 +459,7 @@ export function TransactionView({ text={} kind="negative" /> + {payto && } ); } -- cgit v1.2.3