diff --git a/dashboard-ui/scripts/Itemdetailpage.js b/dashboard-ui/scripts/Itemdetailpage.js index b2e7245dc9..72f1296a5c 100644 --- a/dashboard-ui/scripts/Itemdetailpage.js +++ b/dashboard-ui/scripts/Itemdetailpage.js @@ -174,7 +174,7 @@ if (item.Type == "MusicAlbum") { renderMusicVideos(page, item); } else { - $('#musicVideosCollapsible', page).show(); + $('#musicVideosCollapsible', page).hide(); } renderThemeSongs(page, item); diff --git a/dashboard-ui/scripts/librarybrowser.js b/dashboard-ui/scripts/librarybrowser.js index fa60db61c4..3f5331137c 100644 --- a/dashboard-ui/scripts/librarybrowser.js +++ b/dashboard-ui/scripts/librarybrowser.js @@ -1518,7 +1518,7 @@ } } - if (item.OfficialRating) { + if (item.OfficialRating && item.Type !== "Season" && item.Type !== "Episode") { miscInfo.push(item.OfficialRating); }