mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-07 05:31:15 -07:00
Remove capitalization for platform on history tables
This commit is contained in:
parent
bc2f73d686
commit
f88d673e87
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ history_table_options = {
|
||||||
"data": "platform",
|
"data": "platform",
|
||||||
"createdCell": function (td, cellData, rowData, row, col) {
|
"createdCell": function (td, cellData, rowData, row, col) {
|
||||||
if (cellData !== '') {
|
if (cellData !== '') {
|
||||||
$(td).html(capitalizeFirstLetter(cellData));
|
$(td).html(cellData);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"width": "10%",
|
"width": "10%",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue