Remove capitalization for platform on history tables

This commit is contained in:
JonnyWong16 2020-02-04 13:48:29 -08:00
parent bc2f73d686
commit f88d673e87

View file

@ -115,7 +115,7 @@ history_table_options = {
"data": "platform",
"createdCell": function (td, cellData, rowData, row, col) {
if (cellData !== '') {
$(td).html(capitalizeFirstLetter(cellData));
$(td).html(cellData);
}
},
"width": "10%",