Skip to content

Commit

Permalink
Merge pull request #6977 from topcoder-platform/develop
Browse files Browse the repository at this point in the history
Fix for PS-261
  • Loading branch information
jmgasper authored Apr 26, 2024
2 parents 9c68d0f + 149dad7 commit 7baceec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -906,7 +906,7 @@ class SubmissionsComponent extends React.Component {
<p>
{
(!_.isEmpty(s.review) && !_.isEmpty(s.review[0]) && s.review[0].score)
? s.review[0].score.toFixed(2)
? Number(s.review[0].score).toFixed(2)
: 'N/A'
}
</p>
Expand Down

0 comments on commit 7baceec

Please sign in to comment.