aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/need-list/need-list.component.html
diff options
context:
space:
mode:
authorGunther6070 <haydenhartman10@yahoo.com>2025-03-31 14:36:39 -0400
committerGunther6070 <haydenhartman10@yahoo.com>2025-03-31 14:36:39 -0400
commitec88317c75ec907c319412502a1b189c97db9173 (patch)
tree69e0cb097bd7d5d3e68fa840769297ac23bb87ba /ufund-ui/src/app/components/need-list/need-list.component.html
parent07a9e3c6faf735b374c6b63235defeb8a38a6661 (diff)
downloadJellySolutions-ec88317c75ec907c319412502a1b189c97db9173.tar.gz
JellySolutions-ec88317c75ec907c319412502a1b189c97db9173.tar.bz2
JellySolutions-ec88317c75ec907c319412502a1b189c97db9173.zip
Modified need list to display percent as a whole number
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.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 3a4ca9c..e24ee09 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
@@ -41,7 +41,7 @@
<div class="prog">
<span id="hover-status-label-{{need.id}}"> </span>
- <span>{{need.current}}/{{need.maxGoal}} ({{(need.current / need.maxGoal) * 100}}%)</span>
+ <span>{{need.current}}/{{need.maxGoal}} ({{((need.current / need.maxGoal) * 100).toFixed(0)}}%)</span>
<progress [value]="need.current" [max]="need.maxGoal"></progress>
</div>
</div>