Fix: license timer chart bug

This commit is contained in:
2019-06-14 10:34:09 +09:00
parent 9ecb633996
commit e148f9c24d
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -97,7 +97,7 @@ Chart.prototype.printChartRecord = function(chartRecordIndex, scoreListIndex) {
this.recordTexts[chartRecordIndex].printGrade("-");
this.recordTexts[chartRecordIndex].printSubject("-");
} else {
this.recordTexts[chartRecordIndex].printDate(StringUtil.printMonthDay(this.scoreList[scoreListIndex].date));
this.recordTexts[chartRecordIndex].printDate(DateUtil.printMonthDay(this.scoreList[scoreListIndex].date));
var scoreValue = RecordUtil.getRecordValueWithUnit(this.scoreList[scoreListIndex].score, 101);
this.recordTexts[chartRecordIndex].printScore(scoreValue);