diff options
author | Gunther6070 <haydenhartman10@yahoo.com> | 2025-04-02 16:09:24 -0400 |
---|---|---|
committer | Gunther6070 <haydenhartman10@yahoo.com> | 2025-04-02 16:09:24 -0400 |
commit | bc23c624a760b33bb67b3c0df5fd3d8f39f36e77 (patch) | |
tree | 8f2760afcdadf51b25412367139efbe5c8a2de83 /ufund-ui/src/app/components/need-list | |
parent | 4d382ccf9de889e4b339dd13220c3f761497e419 (diff) | |
download | JellySolutions-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.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 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> |