From d2cf75b782b63d7b217b14c0a3bdc953c5e3bca9 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 6 Sep 2021 14:55:55 -0300 Subject: rendring pending transation item --- packages/taler-wallet-webextension/src/wallet/Transaction.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (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 ad00b3d1b..cc5430d0d 100644 --- a/packages/taler-wallet-webextension/src/wallet/Transaction.tsx +++ b/packages/taler-wallet-webextension/src/wallet/Transaction.tsx @@ -22,7 +22,7 @@ import { useEffect, useState } from "preact/hooks"; import * as wxApi from "../wxApi"; import { Pages } from "../NavigationBar"; import emptyImg from "../../static/img/empty.png" -import { Button, ButtonBox, ButtonBoxDestructive, ButtonDestructive, ButtonPrimary, ExtraLargeText, FontIcon, LargeText, ListOfProducts, PopupBox, Row, RowBorderGray, SmallTextLight, WalletBox } from "../components/styled"; +import { Button, ButtonBox, ButtonBoxDestructive, ButtonDestructive, ButtonPrimary, ExtraLargeText, FontIcon, LargeText, ListOfProducts, PopupBox, Row, RowBorderGray, SmallLightText, WalletBox } from "../components/styled"; import { ErrorMessage } from "../components/ErrorMessage"; export function TransactionPage({ tid }: { tid: string; }): JSX.Element { @@ -94,7 +94,7 @@ export function TransactionView({ transaction, onDelete, onRetry, onBack }: Wall function Part({ text, title, kind, big }: { title: string, text: AmountLike, kind: Kind, big?: boolean }) { const Text = big ? ExtraLargeText : LargeText; return
- {title} + {title} {text} @@ -153,7 +153,7 @@ export function TransactionView({ transaction, onDelete, onRetry, onBack }: Wall
- {p.quantity && p.quantity > 0 && x {p.quantity} {p.unit}} + {p.quantity && p.quantity > 0 && x {p.quantity} {p.unit}}
{p.description}
)} @@ -235,7 +235,7 @@ export function TransactionView({ transaction, onDelete, onRetry, onBack }: Wall
- {p.quantity && p.quantity > 0 && x {p.quantity} {p.unit}} + {p.quantity && p.quantity > 0 && x {p.quantity} {p.unit}}
{p.description}
)} -- cgit v1.2.3