mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
support editing artist/album for music video
This commit is contained in:
parent
f078fd9a7c
commit
68bba9b073
@ -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…
Reference in New Issue
Block a user