aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/components/PendingTransactions.tsx
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2022-04-05 12:16:09 -0300
committerSebastian <sebasjm@gmail.com>2022-04-05 12:16:09 -0300
commita30a547ac5596c787252ce23a845093c426dc2ef (patch)
treee1dff892172cbcb0e34133f14a9e3f9e7f1c0250 /packages/taler-wallet-webextension/src/components/PendingTransactions.tsx
parentc9adb4a5e292ae9a2c359a7a55083746486e11d9 (diff)
downloadwallet-core-a30a547ac5596c787252ce23a845093c426dc2ef.tar.xz
mui alert and not enough blanance ported to material
Diffstat (limited to 'packages/taler-wallet-webextension/src/components/PendingTransactions.tsx')
-rw-r--r--packages/taler-wallet-webextension/src/components/PendingTransactions.tsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/taler-wallet-webextension/src/components/PendingTransactions.tsx b/packages/taler-wallet-webextension/src/components/PendingTransactions.tsx
index 2d8a776cd..f37a212f7 100644
--- a/packages/taler-wallet-webextension/src/components/PendingTransactions.tsx
+++ b/packages/taler-wallet-webextension/src/components/PendingTransactions.tsx
@@ -70,16 +70,16 @@ export function PendingTransactionsView({
),
action: () => goToTransaction(t.transactionId),
description: (
- <Typography>
- <b>
+ <Fragment>
+ <Typography inline bold>
{amount.currency} {Amounts.stringifyValue(amount)}
- </b>{" "}
- -{" "}
+ </Typography>
+ &nbsp;-&nbsp;
<Time
timestamp={AbsoluteTime.fromTimestamp(t.timestamp)}
format="dd MMMM yyyy"
/>
- </Typography>
+ </Fragment>
),
};
})}