diff options
author | Gunther6070 <haydenhartman10@yahoo.com> | 2025-03-18 14:45:26 -0400 |
---|---|---|
committer | Gunther6070 <haydenhartman10@yahoo.com> | 2025-03-18 14:45:26 -0400 |
commit | 521c8a49bbebb514a0a309a4f4f28d6e1204b7d2 (patch) | |
tree | c74bdf812e497880631a4e6788e42f64b3551bec | |
parent | 67f7914faefcb227c0c9b1010b437ee874f3c56a (diff) | |
download | JellySolutions-521c8a49bbebb514a0a309a4f4f28d6e1204b7d2.tar.gz JellySolutions-521c8a49bbebb514a0a309a4f4f28d6e1204b7d2.tar.bz2 JellySolutions-521c8a49bbebb514a0a309a4f4f28d6e1204b7d2.zip |
Removed back button from dashboard and added back to the needs page
-rw-r--r-- | ufund-ui/src/app/components/dashboard/dashboard.component.html | 1 | ||||
-rw-r--r-- | ufund-ui/src/app/components/need-page/need-page.component.html | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/ufund-ui/src/app/components/dashboard/dashboard.component.html b/ufund-ui/src/app/components/dashboard/dashboard.component.html index fc8baf0..12ecc8b 100644 --- a/ufund-ui/src/app/components/dashboard/dashboard.component.html +++ b/ufund-ui/src/app/components/dashboard/dashboard.component.html @@ -1,5 +1,4 @@ <h1>Dashboard</h1> -<input type="button" value="Back to Login" (click)="back()"> <app-cupboard></app-cupboard> <app-funding-basket></app-funding-basket>
\ No newline at end of file diff --git a/ufund-ui/src/app/components/need-page/need-page.component.html b/ufund-ui/src/app/components/need-page/need-page.component.html index 8234ac7..21f0771 100644 --- a/ufund-ui/src/app/components/need-page/need-page.component.html +++ b/ufund-ui/src/app/components/need-page/need-page.component.html @@ -1,3 +1,4 @@ +<button routerLink="/dashboard">Back to dashboard</button> <h1>Viewing Need: {{need?.name}}</h1> <a>internal id: {{need?.id}}</a> <div style="display: flex; column-gap: 6px;"> |