Skip to content

Commit

Permalink
Merge pull request #789 from Lunatic-Labs/SKIL-560
Browse files Browse the repository at this point in the history
SKIL-560
  • Loading branch information
aparriaran authored Dec 3, 2024
2 parents aa5496e + 3dc3a0a commit 1ccd80f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default function ViewAssessmentStatus(props) {
var allRatings = [];
var avg = 0;
var stdev = 0;
var progress = props.completedAssessmentsPercentage;
var progress = +props.completedAssessmentsPercentage.toFixed(2);

if (props.completedAssessments !== null && props.completedAssessments.length > 0) {
// Iterate through each completed assessment for chosen assessment task
Expand Down

0 comments on commit 1ccd80f

Please sign in to comment.