Skip to content

Commit

Permalink
SAK-48630 Gradebook: Points are not being displayed in Grade Summary …
Browse files Browse the repository at this point in the history
…for a student (#11965)
  • Loading branch information
kunaljaykam authored Oct 6, 2023
1 parent 9179d75 commit a9a3a1d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3327,7 +3327,7 @@ public Map<String, CourseGradeTransferBean> getCourseGradeForStudents(final Stri
cg.setMappedGrade(mappedGrade);

// points
cg.setPointsEarned(gr.getPointsEarned()); // synonymous with gradeRecord.getCalculatedPointsEarned()
cg.setPointsEarned(gr.getCalculatedPointsEarned());
cg.setTotalPointsPossible(gr.getTotalPointsPossible());
}
rval.put(gr.getStudentId(), cg);
Expand Down

0 comments on commit a9a3a1d

Please sign in to comment.