aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/need-list
diff options
context:
space:
mode:
authorGunther6070 <haydenhartman10@yahoo.com>2025-04-02 16:09:24 -0400
committerGunther6070 <haydenhartman10@yahoo.com>2025-04-02 16:09:24 -0400
commitbc23c624a760b33bb67b3c0df5fd3d8f39f36e77 (patch)
tree8f2760afcdadf51b25412367139efbe5c8a2de83 /ufund-ui/src/app/components/need-list
parent4d382ccf9de889e4b339dd13220c3f761497e419 (diff)
downloadJellySolutions-bc23c624a760b33bb67b3c0df5fd3d8f39f36e77.tar.gz
JellySolutions-bc23c624a760b33bb67b3c0df5fd3d8f39f36e77.tar.bz2
JellySolutions-bc23c624a760b33bb67b3c0df5fd3d8f39f36e77.zip
Added dollar signs and other small additions to needs
Diffstat (limited to 'ufund-ui/src/app/components/need-list')
-rw-r--r--ufund-ui/src/app/components/need-list/need-list.component.html2
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 88317dd..593aebf 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
@@ -42,7 +42,7 @@
<div class="prog">
<span id="hover-status-label-{{need.id}}"> </span>
- <span>{{need.current}}/{{need.maxGoal}} ({{((need.current / need.maxGoal) * 100).toFixed(0)}}%)</span>
+ <span>{{getPrefix(need)}}{{need.current}}/{{need.maxGoal}} ({{((need.current / need.maxGoal) * 100).toFixed(0)}}%)</span>
<progress [value]="need.current" [max]="need.maxGoal"></progress>
</div>