diff options
author | benal01 <bja4245@rit.edu> | 2025-03-30 00:39:23 -0400 |
---|---|---|
committer | benal01 <bja4245@rit.edu> | 2025-03-30 00:39:23 -0400 |
commit | daae556a1be7a30bc6f4606bd1b1567b713d054a (patch) | |
tree | 4e23790dafc030fa1968d0a0be3eeda042b23bcf /ufund-ui/src/app/components/need-list/need-list.component.html | |
parent | 88650361adfc9be8344b0d383100b0c6ab513973 (diff) | |
download | JellySolutions-daae556a1be7a30bc6f4606bd1b1567b713d054a.tar.gz JellySolutions-daae556a1be7a30bc6f4606bd1b1567b713d054a.tar.bz2 JellySolutions-daae556a1be7a30bc6f4606bd1b1567b713d054a.zip |
better display for urgency
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, 1 insertions, 1 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 88b9752..866e5e4 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 @@ -28,7 +28,7 @@ <ul> <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, '')"> - <section>{{need.name}} | {{need.location}} {{need.urgent ? "URGENT" : ""}}<span id="hover-status-label-{{need.id}}"> </span></section> + <section> <p> {{need.name}} | {{need.location}} <span> {{need.urgent ? "URGENT" : ""}} </span> <span id="hover-status-label-{{need.id}}"> </span> </section> <section> <progress value="need.current" max="need.maxGoal"></progress> <progress value="need.current" max="need.maxGoal"></progress> |