diff options
| author | sowgro <tpoke.ferrari@gmail.com> | 2025-04-07 16:49:21 -0400 | 
|---|---|---|
| committer | sowgro <tpoke.ferrari@gmail.com> | 2025-04-07 16:49:21 -0400 | 
| commit | 8b64b8bd43f987b924d74d0ea597b7b606ca9357 (patch) | |
| tree | c8c3229c54955a4a037b0ce0a016221e8784af42 /ufund-ui/src/app/components/need-page | |
| parent | bb4e0e55fee7ec8f34c36e6299301d612a0de2ce (diff) | |
| parent | 7635188ed6182a72facd8ab3299f13c7217a8abd (diff) | |
| download | JellySolutions-8b64b8bd43f987b924d74d0ea597b7b606ca9357.tar.gz JellySolutions-8b64b8bd43f987b924d74d0ea597b7b606ca9357.tar.bz2 JellySolutions-8b64b8bd43f987b924d74d0ea597b7b606ca9357.zip  | |
Merge branch 'main' into light-mode
# Conflicts:
#	ufund-ui/src/styles.css
Diffstat (limited to '')
| -rw-r--r-- | ufund-ui/src/app/components/need-page/need-page.component.html | 4 | 
1 files changed, 2 insertions, 2 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 2629346..8263c04 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 @@ -9,9 +9,9 @@              <span>This goal is <strong>{{(((need.current)*100) / (need.maxGoal)).toFixed(0)}}%</strong> complete!</span>          </div> -        <span><strong>Target Goal:</strong> {{(need.type === GoalType.MONETARY) ? "$" : ""}}{{need.maxGoal}}</span> +        <span><strong>Target Goal:</strong> {{(need.type === GoalType.MONETARY) ? "$" : ""}}{{need.maxGoal.toLocaleString()}}</span> -        <span><strong>Amount Currently Collected:</strong> {{need.type.toString() == 'MONETARY' ? '$' : ''}}{{need.current}}</span> +        <span><strong>Amount Currently Collected:</strong> {{need.type.toString() == 'MONETARY' ? '$' : ''}}{{need.current.toLocaleString()}}</span>          <span><strong>Location:</strong> {{need.location}}</span>  | 
