aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/need-list/need-list.component.html
diff options
context:
space:
mode:
authorbenal01 <bja4245@rit.edu>2025-03-21 10:07:45 -0400
committerbenal01 <bja4245@rit.edu>2025-03-21 10:07:45 -0400
commitd386b35bf24444240b0d670674c3e75ea5d8b3ce (patch)
treef735df43a8e2cbae1fc5ec2842b19ddb6a94910c /ufund-ui/src/app/components/need-list/need-list.component.html
parentbab829a60dc243b5987873ea0f0114b032643995 (diff)
downloadJellySolutions-d386b35bf24444240b0d670674c3e75ea5d8b3ce.tar.gz
JellySolutions-d386b35bf24444240b0d670674c3e75ea5d8b3ce.tar.bz2
JellySolutions-d386b35bf24444240b0d670674c3e75ea5d8b3ce.zip
delete icon in need list
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.html7
1 files changed, 4 insertions, 3 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 504deb9..9f22633 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
@@ -1,12 +1,11 @@
<h1>Needs List</h1>
-<input id="search-button" type="button" value="Search" (click)="open()">
<div id="search-container">
<form id="search-form" #searchForm="ngForm">
<label>Search:</label><br>
<input type="text" name="search" (input)="search(searchForm.value)" ngModel>
<input type="reset" value="Clear" (click)="search(null)"> <br>
</form>
- <button (click)="close()">Close</button>
+ <!--<button (click)="close()">Close</button>-->
</div>
<!-- display for when results are present and filtered-->
@@ -18,6 +17,8 @@
<a routerLink="/need/{{need.id}}">
{{need.name}}
</a>
- <button (click)="delete(need.id)" *ngIf="isManager()">Delete</button>
+ <button (click)="delete(need.id)" *ngIf="isManager()">
+ <img class="icon" src="/delete.png" alt="Delete">
+ </button>
<button (click)="add(need)" *ngIf="isHelper()">Add To Basket</button>
</li>