diff options
author | benal01 <bja4245@rit.edu> | 2025-03-18 00:01:16 -0400 |
---|---|---|
committer | benal01 <bja4245@rit.edu> | 2025-03-18 00:01:16 -0400 |
commit | 02858a9af74b5f564b882adf38391dd3a1f5126c (patch) | |
tree | 5287b0e4ae9fd2e3ae5219ea304f0cf9e6ad7c48 /ufund-ui/src/app/components/need-list/need-list.component.html | |
parent | 2ee4d91af8262c978120b0d540a86386309b4e54 (diff) | |
download | JellySolutions-02858a9af74b5f564b882adf38391dd3a1f5126c.tar.gz JellySolutions-02858a9af74b5f564b882adf38391dd3a1f5126c.tar.bz2 JellySolutions-02858a9af74b5f564b882adf38391dd3a1f5126c.zip |
add need to basket
Diffstat (limited to 'ufund-ui/src/app/components/need-list/need-list.component.html')
-rw-r--r-- | ufund-ui/src/app/components/need-list/need-list.component.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ufund-ui/src/app/components/need-list/need-list.component.html b/ufund-ui/src/app/components/need-list/need-list.component.html index 07f6735..fce6377 100644 --- a/ufund-ui/src/app/components/need-list/need-list.component.html +++ b/ufund-ui/src/app/components/need-list/need-list.component.html @@ -14,6 +14,7 @@ {{need.name}} </a> <button (click)="delete(need.id)" *ngIf="isManager()">Delete</button> + <button (click)="add(need)" *ngIf="isHelper()">Add To Basket</button> </div> </div> </div> @@ -23,4 +24,5 @@ {{need.name}} </a> <button (click)="delete(need.id)" *ngIf="isManager()">Delete</button> + <button (click)="add(need)" *ngIf="isHelper()">Add To Basket</button> </li> |