Fix: Chart.js printMonthDay bug

This commit is contained in:
2019-06-09 00:38:15 +09:00
parent 4026f637b7
commit f7e1159519
+1 -1
View File
@@ -15,7 +15,7 @@ Chart.prototype.drawRecordGraph = function(index, date, bestRecord, min, max) {
this.drawText(
posX, posY + Chart.CHART_DATE_OFFSET_Y,
date === "-" ? "-" : StringUtil.printMonthDay(date)
date === "-" ? "-" : DateUtil.printMonthDay(date)
);
if(bestRecord === "")