taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 2f8de9ea86cc1170b45e13fae6f0a66c7c4fd038
parent c8d78d68d369bcc3ff3e0fc257b481146ec92626
Author: Sebastian <sebasjm@gmail.com>
Date:   Mon, 24 Apr 2023 17:59:56 -0300

fix #7749 show content of pos confirmation literally

Diffstat:
Mpackages/taler-wallet-webextension/src/wallet/Transaction.tsx | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packages/taler-wallet-webextension/src/wallet/Transaction.tsx b/packages/taler-wallet-webextension/src/wallet/Transaction.tsx @@ -635,7 +635,7 @@ export function TransactionView({ alert={{ type: "info", message: i18n.str`Confirmation code`, - description: transaction.posConfirmation as TranslatedString, + description: <pre>{transaction.posConfirmation}</pre>, }} /> ) : undefined}