mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
fixed music videos collapsible visibility
This commit is contained in:
parent
882bc426ad
commit
3ddd2bac8d
@ -174,7 +174,7 @@
|
||||
if (item.Type == "MusicAlbum") {
|
||||
renderMusicVideos(page, item);
|
||||
} else {
|
||||
$('#musicVideosCollapsible', page).show();
|
||||
$('#musicVideosCollapsible', page).hide();
|
||||
}
|
||||
|
||||
renderThemeSongs(page, item);
|
||||
|
@ -1518,7 +1518,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
if (item.OfficialRating) {
|
||||
if (item.OfficialRating && item.Type !== "Season" && item.Type !== "Episode") {
|
||||
miscInfo.push(item.OfficialRating);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user