mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fixed music videos collapsible visibility
This commit is contained in:
parent
882bc426ad
commit
3ddd2bac8d
2 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue