diff --git a/data/interfaces/default/js/tables/history_table.js b/data/interfaces/default/js/tables/history_table.js index d219fe0b..d6ab4d6c 100644 --- a/data/interfaces/default/js/tables/history_table.js +++ b/data/interfaces/default/js/tables/history_table.js @@ -161,10 +161,10 @@ history_table_options = { media_type = ''; thumb_popover = '' + cellData + parent_info + '' $(td).html('
' + media_type + ' ' + thumb_popover + '
'); - } else if (/^[0-9]+$/.test(rowData['rating_key'])) { - $(td).html('' + cellData + ''); - } else { + } else if (rowData['media_type'] === 'clip') { $(td).html(cellData); + } else { + $(td).html('' + cellData + ''); } } },