Merge pull request #1085 from dod-ccpo/total-funding-bug-168516197

Total and Obligated Funding % Bug
This commit is contained in:
leigh-mil 2019-09-23 10:19:38 -04:00 committed by GitHub
commit b837700612
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -243,6 +243,8 @@ export default {
return '<1%'
} else if (percentage > 99 && percentage < 100) {
return '>99%'
} else if (percentage > 100) {
return '>100%'
} else {
return `${percentage.toFixed(0)}%`
}