mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
use music icon as default music genre image
This commit is contained in:
parent
b267c433c3
commit
ed733d962b
1 changed files with 2 additions and 2 deletions
|
@ -1298,7 +1298,7 @@
|
|||
tag: item.ImageTags.Disc
|
||||
});
|
||||
}
|
||||
else if (item.MediaType == "Audio" || item.Type == "MusicAlbum") {
|
||||
else if (item.MediaType == "Audio" || item.Type == "MusicAlbum" || item.Type == "MusicGenre") {
|
||||
url = "css/images/items/detail/audio.png";
|
||||
}
|
||||
else if (item.MediaType == "Game") {
|
||||
|
@ -1307,7 +1307,7 @@
|
|||
else if (item.Type == "Person") {
|
||||
url = "css/images/items/detail/person.png";
|
||||
}
|
||||
else if (item.Type == "Genre" || item.Type == "Studio" || item.Type == "MusicGenre") {
|
||||
else if (item.Type == "Genre" || item.Type == "Studio") {
|
||||
url = "css/images/items/detail/video.png";
|
||||
}
|
||||
else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue