gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-merchant-backoffice] branch master updated: mention public accoun


From: gnunet
Subject: [taler-merchant-backoffice] branch master updated: mention public account next to the transactions list
Date: Thu, 13 Jan 2022 09:23:12 +0100

This is an automated email from the git hooks/post-receive script.

ms pushed a commit to branch master
in repository merchant-backoffice.

The following commit(s) were added to refs/heads/master by this push:
     new e7544e9  mention public account next to the transactions list
e7544e9 is described below

commit e7544e9f359cf619be98ff82ea1b85543d86568d
Author: ms <ms@taler.net>
AuthorDate: Thu Jan 13 09:23:07 2022 +0100

    mention public account next to the transactions list
---
 packages/bank/src/pages/home/index.tsx | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/packages/bank/src/pages/home/index.tsx 
b/packages/bank/src/pages/home/index.tsx
index b087d54..687269e 100644
--- a/packages/bank/src/pages/home/index.tsx
+++ b/packages/bank/src/pages/home/index.tsx
@@ -677,7 +677,11 @@ function PublicHistories(): VNode {
   var txs = [];
   for (const account of data.publicAccounts) {
     console.log("Asking transactions for", account.accountLabel)
-    txs.push(<Transactions accountLabel={account.accountLabel} pageNumber={0} 
/>)
+    txs.push(
+      <div>{account.accountLabel} latest transactions:
+        <Transactions accountLabel={account.accountLabel} pageNumber={0} />
+      </div>
+    )
   }
   return <div>{txs}</div>;
 }
@@ -821,7 +825,6 @@ export function BankHome(): VNode {
           );
         }}>{i18n`Sign in`}</button>
       <div>
-        <p>{i18n`Public transactions:`}</p>
        <SWRWithoutCredentials baseUrl={getRootPath()}>
           <PublicHistories />
        </SWRWithoutCredentials>

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]