diff options
author | benal01 <bja4245@rit.edu> | 2025-03-25 10:43:52 -0400 |
---|---|---|
committer | benal01 <bja4245@rit.edu> | 2025-03-25 10:43:52 -0400 |
commit | d9eb78521f29ead3a9f70b09e18a6d9560cc849c (patch) | |
tree | 50622f8c4d435a99d40bf7a30d473e763110f803 /ufund-ui/src/app/components/need-list/need-list.component.html | |
parent | f7cd2d90191c1d81526ed549514d82864c1aebb2 (diff) | |
download | JellySolutions-d9eb78521f29ead3a9f70b09e18a6d9560cc849c.tar.gz JellySolutions-d9eb78521f29ead3a9f70b09e18a6d9560cc849c.tar.bz2 JellySolutions-d9eb78521f29ead3a9f70b09e18a6d9560cc849c.zip |
fancy selection animation for need list
Diffstat (limited to '')
-rw-r--r-- | ufund-ui/src/app/components/need-list/need-list.component.html | 4 |
1 files changed, 2 insertions, 2 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 b31ccf0..eaa8a6f 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 @@ -13,14 +13,14 @@ <h2 *ngIf="searchResults.length == 0"> No Results Found </h2> <ul> - <li *ngFor="let need of searchResults" id="need-button-{{need.id}}" > + <li *ngFor="let need of searchResults" id="need-button-{{need.id}}"> <button [routerLink]="'/need/' + need.id" (mouseenter) ="changeText(need.id, '(details)')" (mouseleave)="changeText(need.id, '')"> <p>{{need.name}}<span id="hover-status-label-{{need.id}}"> </span></p> </button> <button (click)="add(need)" *ngIf="isHelper()">Add To Basket</button> <section *ngIf="isManager()"> - <button (click)="select(need)"> + <button (click)="select(need)" id="need-edit-button-{{need.id}}"> <img class="icon" src="/edit.png" alt="Select"> </button> <button (click)="delete(need.id)" *ngIf="isManager()"> |