aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/src/components
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2024-02-12 16:58:30 -0300
committerSebastian <sebasjm@gmail.com>2024-02-12 16:58:30 -0300
commitc166f98aeb744a31cb0ae8d6d7d294fc2eae0b1f (patch)
treec1c82a8a4ab8d80750870c00388bbdd18f48b636 /packages/taler-wallet-webextension/src/components
parent86194c61457f2e2e534cd05071bde9633e205ad3 (diff)
downloadwallet-core-c166f98aeb744a31cb0ae8d6d7d294fc2eae0b1f.tar.xz
fixes #8228
Diffstat (limited to 'packages/taler-wallet-webextension/src/components')
-rw-r--r--packages/taler-wallet-webextension/src/components/BalanceTable.tsx5
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/taler-wallet-webextension/src/components/BalanceTable.tsx b/packages/taler-wallet-webextension/src/components/BalanceTable.tsx
index d3733e6cc..b8bcaa391 100644
--- a/packages/taler-wallet-webextension/src/components/BalanceTable.tsx
+++ b/packages/taler-wallet-webextension/src/components/BalanceTable.tsx
@@ -14,7 +14,7 @@
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
*/
-import { Amounts, WalletBalance } from "@gnu-taler/taler-util";
+import { Amounts, ScopeType, WalletBalance } from "@gnu-taler/taler-util";
import { VNode, h } from "preact";
import { TableWithRoundRows as TableWithRoundedRows } from "./styled/index.js";
@@ -45,6 +45,9 @@ export function BalanceTable({
}}
>
{Amounts.stringifyValue(av, 2)}
+ <div style={{ fontSize: "small", color: "grey" }}>
+ {entry.scopeInfo.type === ScopeType.Exchange || entry.scopeInfo.type === ScopeType.Auditor ? entry.scopeInfo.url : undefined}
+ </div>
</td>
</tr>
);