diff options
| author | sowgro <tpoke.ferrari@gmail.com> | 2025-03-07 12:52:24 -0500 | 
|---|---|---|
| committer | sowgro <tpoke.ferrari@gmail.com> | 2025-03-07 12:52:24 -0500 | 
| commit | caaf278d1fa69fef69c210edb337fa54102d2737 (patch) | |
| tree | 27b690a5f1e48b884ad8958ac97011516896d4dd /ufund-ui | |
| parent | dd2b912af94b08c2daae20bf861a6f30b5c20253 (diff) | |
| download | JellySolutions-caaf278d1fa69fef69c210edb337fa54102d2737.tar.gz JellySolutions-caaf278d1fa69fef69c210edb337fa54102d2737.tar.bz2 JellySolutions-caaf278d1fa69fef69c210edb337fa54102d2737.zip  | |
Fix login in angular
Diffstat (limited to 'ufund-ui')
| -rw-r--r-- | ufund-ui/src/app/app-routing.module.ts | 2 | ||||
| -rw-r--r-- | ufund-ui/src/app/app.module.ts | 4 | 
2 files changed, 4 insertions, 2 deletions
diff --git a/ufund-ui/src/app/app-routing.module.ts b/ufund-ui/src/app/app-routing.module.ts index d4f14da..4b76654 100644 --- a/ufund-ui/src/app/app-routing.module.ts +++ b/ufund-ui/src/app/app-routing.module.ts @@ -12,7 +12,7 @@ const routes: Routes = [      {path: 'login', component: LoginComponent},      {path: 'cupboard', component: CupboardComponent},      {path: 'dashboard', component: DashboardComponent}, -    {path: 'funding-basket', component: FundingBasketComponent}, +    {path: 'basket', component: FundingBasketComponent},      {path: 'need/:id', component: NeedPageComponent}  ]; diff --git a/ufund-ui/src/app/app.module.ts b/ufund-ui/src/app/app.module.ts index 9203e3b..fa54c58 100644 --- a/ufund-ui/src/app/app.module.ts +++ b/ufund-ui/src/app/app.module.ts @@ -11,6 +11,7 @@ import {NeedListComponent} from './components/need-list/need-list.component';  import {HttpClientModule} from '@angular/common/http';  import {FormsModule} from '@angular/forms';  import {RouterLink, RouterLinkActive, RouterOutlet} from '@angular/router'; +import {DashboardComponent} from './components/dashboard/dashboard.component';  @NgModule({      declarations: [ @@ -19,7 +20,8 @@ import {RouterLink, RouterLinkActive, RouterOutlet} from '@angular/router';          HomePageComponent,          FundingBasketComponent,          CupboardComponent, -        NeedListComponent +        NeedListComponent, +        DashboardComponent      ],      imports: [          BrowserModule,  | 
