gnunet-svn
[Top][All Lists]
Advanced

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

[taler-wallet-core] 14/19: fix: updating the title is better that locati


From: gnunet
Subject: [taler-wallet-core] 14/19: fix: updating the title is better that location.hash
Date: Wed, 07 Dec 2022 20:08:42 +0100

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

sebasjm pushed a commit to branch master
in repository wallet-core.

commit fff43ad0ede5725271ef99c68e3c9358cd68c501
Author: Sebastian <sebasjm@gmail.com>
AuthorDate: Wed Dec 7 12:50:54 2022 -0300

    fix: updating the title is better that location.hash
---
 packages/demobank-ui/src/pages/Routing.tsx            | 2 +-
 packages/demobank-ui/src/pages/home/QrCodeSection.tsx | 4 +++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/packages/demobank-ui/src/pages/Routing.tsx 
b/packages/demobank-ui/src/pages/Routing.tsx
index 7f079a7de..6b00df97b 100644
--- a/packages/demobank-ui/src/pages/Routing.tsx
+++ b/packages/demobank-ui/src/pages/Routing.tsx
@@ -28,7 +28,7 @@ export function Routing(): VNode {
     <Router history={history}>
       <Route path="/public-accounts" component={PublicHistoriesPage} />
       <Route path="/register" component={RegistrationPage} />
-      <Route path="/account/:id*" component={AccountPage} />
+      <Route path="/account" component={AccountPage} />
       <Route default component={Redirect} to="/account" />
     </Router>
   );
diff --git a/packages/demobank-ui/src/pages/home/QrCodeSection.tsx 
b/packages/demobank-ui/src/pages/home/QrCodeSection.tsx
index 1d7b3db10..7c262fdc6 100644
--- a/packages/demobank-ui/src/pages/home/QrCodeSection.tsx
+++ b/packages/demobank-ui/src/pages/home/QrCodeSection.tsx
@@ -31,7 +31,9 @@ export function QrCodeSection({
     //Taler Wallet WebExtension is listening to headers response and tab 
updates.
     //In the SPA there is no header response with the Taler URI so
     //this hack manually triggers the tab update after the QR is in the DOM.
-    window.location.hash = `/account/${new Date().getTime()}`;
+    // WebExtension will be using
+    // 
https://developer.chrome.com/docs/extensions/reference/tabs/#event-onUpdated
+    document.title = `${document.title} ${talerWithdrawUri}`;
   }, []);
 
   return (

-- 
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]