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-page/need-page.component.html | |
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-page/need-page.component.html')
-rw-r--r-- | ufund-ui/src/app/components/need-page/need-page.component.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ufund-ui/src/app/components/need-page/need-page.component.html b/ufund-ui/src/app/components/need-page/need-page.component.html index 522b710..3d362f5 100644 --- a/ufund-ui/src/app/components/need-page/need-page.component.html +++ b/ufund-ui/src/app/components/need-page/need-page.component.html @@ -11,7 +11,7 @@ <span>This goal is <strong>{{(((need.current)*100) / (need.maxGoal)).toFixed(0)}}%</strong> complete!</span> </div> - <span><strong>Target Goal:</strong> {{need.maxGoal}}</span> + <span><strong>Target Goal:</strong> {{(need.type === GoalType.MONETARY) ? "$" : ""}}{{need.maxGoal}}</span> <span><strong>Amount Currently Collected:</strong> {{need.current}}</span> |