Skip to content

Commit

Permalink
Fix for PS-261
Browse files Browse the repository at this point in the history
  • Loading branch information
jmgasper committed Apr 26, 2024
1 parent f0730eb commit 149dad7
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 149dad7

Please sign in to comment.