Skip to content

Commit

Permalink
SAK-33532 Grade log doesn't show the comma separator (sakaiproject#5032)
Browse files Browse the repository at this point in the history
  • Loading branch information
bgarciaentornos authored and ern committed Nov 30, 2017
1 parent b8b13c6 commit 2b29fe7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ protected void populateItem(final ListItem<GbGradeLog> item) {
final GbGradeLog gradeLog = item.getModelObject();

final String logDate = FormatHelper.formatDateTime(gradeLog.getDateGraded());
final String grade = FormatHelper.formatGrade(gradeLog.getGrade());
final String grade = gradeLog.getGrade();

final GbUser grader = GradeLogPanel.this.businessService.getUser(gradeLog.getGraderUuid());
final String graderDisplayId = (grader != null) ? grader.getDisplayId() : getString("unknown.user.id");
Expand Down

0 comments on commit 2b29fe7

Please sign in to comment.