Skip to content

Commit cee8bc9

Browse files
committed
Merge branch 'QA_5_2'
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2 parents 4da47ed + e4642a7 commit cee8bc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/js/src/chart.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ JQPlotLineChart.prototype.populateOptions = function (dataTable, options) {
309309
if (optional.axes.xaxis.ticks.length === 0) {
310310
var data = dataTable.getData();
311311
for (var j = 0; j < data.length; j++) {
312-
optional.axes.xaxis.ticks.push(data[j][0].toString());
312+
optional.axes.xaxis.ticks.push(data[j][0] !== null ? data[j][0].toString() : null);
313313
}
314314
}
315315

0 commit comments

Comments
 (0)