mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-12 08:16:06 -07:00
Make collection titles searchable in table
This commit is contained in:
parent
72215a9f44
commit
0ba755e463
3 changed files with 9 additions and 4 deletions
|
@ -40,7 +40,7 @@ playlists_table_options = {
|
|||
"createdCell": function (td, cellData, rowData, row, col) {
|
||||
if (cellData !== '') {
|
||||
var type = MEDIA_TYPE_HEADERS[rowData['playlistType']] || '';
|
||||
if (rowData['leafCount'] == 1) {
|
||||
if (rowData['leafCount'] === 1) {
|
||||
type = type.slice(0, -1);
|
||||
}
|
||||
$(td).html(cellData + ' ' + type);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue