diff options
author | benal01 <bja4245@rit.edu> | 2025-03-24 10:38:40 -0400 |
---|---|---|
committer | benal01 <bja4245@rit.edu> | 2025-03-24 10:38:40 -0400 |
commit | 1c1d3922e7eea35764ebab39b18172ed2c8c82d9 (patch) | |
tree | 5ea5605edd352634921e644b4a588598a0c5b782 /ufund-ui/src/app/components/need-list/need-list.component.html | |
parent | a05f6f0ab8dead76f937a2d7196fa005af0367fe (diff) | |
download | JellySolutions-1c1d3922e7eea35764ebab39b18172ed2c8c82d9.tar.gz JellySolutions-1c1d3922e7eea35764ebab39b18172ed2c8c82d9.tar.bz2 JellySolutions-1c1d3922e7eea35764ebab39b18172ed2c8c82d9.zip |
better feedback using a <span>
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 | 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 fc2daa5..741b899 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,9 +13,9 @@ <h2 *ngIf="searchResults.length == 0"> No Results Found </h2> <ul> - <li *ngFor="let need of searchResults" id="need-button-{{need.id}}" (mouseenter) ="changeText(need.id, need.name + '(Click to view)')" (mouseleave)="changeText(need.id, need.name)" > + <li *ngFor="let need of searchResults" id="need-button-{{need.id}}" (mouseenter) ="changeText(need.id, '(details)')" (mouseleave)="changeText(need.id, '')" > <button [routerLink]="'/need/' + need.id"> - <p id="need-label-{{need.id}}">{{need.name}}</p> + <p>{{need.name}}<span id="hover-status-label-{{need.id}}"> </span></p> <button (click)="delete(need.id)" *ngIf="isManager()"> <img class="icon" src="/delete.png" alt="Delete"> </button> |