styled wallet headers and transaction tables

This commit is contained in:
Fran Jurmanović
2021-06-12 23:46:08 +02:00
parent 4df3801f42
commit d43bbfa82b
11 changed files with 340 additions and 200 deletions

View File

@@ -65,6 +65,7 @@ class TransactionCreateElement extends BasePageElement {
if (response?.id) {
this.appMain.triggerWalletUpdate();
this.appMain.pushToast('success', 'Transaction created successfully!');
this.routerService.goTo('/history', {
walletId: response.id,
});

View File

@@ -48,6 +48,7 @@ class WalletCreateElement extends BasePageElement {
if (response?.id) {
this.appMain.triggerWalletUpdate();
this.appMain.pushToast('success', 'Wallet created successfully!');
this.routerService.goTo('/wallet/:walletId', {
walletId: response.id,
});