Skip to content

Commit 7baceec

Browse files
authored
Merge pull request #6977 from topcoder-platform/develop
Fix for PS-261
2 parents 9c68d0f + 149dad7 commit 7baceec

File tree

1 file changed

+1
-1
lines changed
  • src/shared/components/challenge-detail/Submissions

1 file changed

+1
-1
lines changed

src/shared/components/challenge-detail/Submissions/index.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -906,7 +906,7 @@ class SubmissionsComponent extends React.Component {
906906
<p>
907907
{
908908
(!_.isEmpty(s.review) && !_.isEmpty(s.review[0]) && s.review[0].score)
909-
? s.review[0].score.toFixed(2)
909+
? Number(s.review[0].score).toFixed(2)
910910
: 'N/A'
911911
}
912912
</p>

0 commit comments

Comments
 (0)