diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-04-04 23:14:14 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-04-04 23:14:14 -0400 |
commit | 7c49fcd788692a898e985cb156dd9fd910c05790 (patch) | |
tree | fad3944da55014731cf0455ea416df72c16ebb4c /ufund-ui/src/app/components/need-page/need-page.component.ts | |
parent | f70e86470f7083cda1949ff97556d9e39578ce1d (diff) | |
download | JellySolutions-7c49fcd788692a898e985cb156dd9fd910c05790.tar.gz JellySolutions-7c49fcd788692a898e985cb156dd9fd910c05790.tar.bz2 JellySolutions-7c49fcd788692a898e985cb156dd9fd910c05790.zip |
Add new authentication to dashboard, cleanup
Diffstat (limited to '')
-rw-r--r-- | ufund-ui/src/app/components/need-page/need-page.component.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ufund-ui/src/app/components/need-page/need-page.component.ts b/ufund-ui/src/app/components/need-page/need-page.component.ts index 45d6db5..0967266 100644 --- a/ufund-ui/src/app/components/need-page/need-page.component.ts +++ b/ufund-ui/src/app/components/need-page/need-page.component.ts @@ -1,5 +1,5 @@ import {Component, Input, OnInit} from '@angular/core'; -import {Need} from '../../models/Need'; +import {GoalType, Need} from '../../models/Need'; import {ActivatedRoute, Router} from "@angular/router"; import {CupboardService} from "../../services/cupboard.service"; import {AuthService} from '../../services/auth.service'; @@ -69,4 +69,6 @@ export class NeedPageComponent implements OnInit { }) // this.refresh(); } + + readonly GoalType = GoalType } |