diff options
author | Gunther6070 <haydenhartman10@yahoo.com> | 2025-03-18 16:23:22 -0400 |
---|---|---|
committer | Gunther6070 <haydenhartman10@yahoo.com> | 2025-03-18 16:23:22 -0400 |
commit | 20f717cab504a988ef8da4b34acf8ef7a7adfdd7 (patch) | |
tree | bea38f60aee973e7189b3240eb63b4341f64d37f | |
parent | cafbccaaae09e39922dd9ff49f94eb8bd5d06795 (diff) | |
download | JellySolutions-20f717cab504a988ef8da4b34acf8ef7a7adfdd7.tar.gz JellySolutions-20f717cab504a988ef8da4b34acf8ef7a7adfdd7.tar.bz2 JellySolutions-20f717cab504a988ef8da4b34acf8ef7a7adfdd7.zip |
Removed decimal values of percents on needs
-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 21f0771..90fd459 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 @@ -19,4 +19,4 @@ <p>Goal: {{need?.maxGoal}}</p> <p>Current: {{need?.current}}</p> -<p>This goal is <strong>{{((need?.current ?? 0)*100) / (need?.maxGoal ?? 0)}}%</strong> complete!</p>
\ No newline at end of file +<p>This goal is <strong>{{(((need?.current ?? 0)*100) / (need?.maxGoal ?? 0)).toFixed(0)}}%</strong> complete!</p>
\ No newline at end of file |