mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
support editing artist/album for music video
This commit is contained in:
parent
f078fd9a7c
commit
68bba9b073
1 changed files with 6 additions and 2 deletions
|
@ -138,13 +138,17 @@
|
|||
}
|
||||
|
||||
if (item.Type == "Audio") {
|
||||
$('#fldAlbumArtist', page).show();
|
||||
} else {
|
||||
$('#fldAlbumArtist', page).hide();
|
||||
}
|
||||
|
||||
if (item.Type == "Audio" || item.Type == "MusicVideo") {
|
||||
$('#fldArtist', page).show();
|
||||
$('#fldAlbum', page).show();
|
||||
$('#fldAlbumArtist', page).show();
|
||||
} else {
|
||||
$('#fldArtist', page).hide();
|
||||
$('#fldAlbum', page).hide();
|
||||
$('#fldAlbumArtist', page).hide();
|
||||
}
|
||||
|
||||
if (item.Type == "Movie" || item.Type == "Trailer" || item.Type == "Person" || item.Type == "Series" || item.Type == "Season" || item.Type == "Episode" || item.Type == "MusicVideo") {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue