mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
#609 - Add manual image selection for Artists
This commit is contained in:
parent
0c9ea3d353
commit
7614d695d9
1 changed files with 10 additions and 1 deletions
|
@ -153,7 +153,16 @@
|
|||
cssClass += " remoteDiscImage";
|
||||
}
|
||||
else {
|
||||
cssClass += currentItem.Type == "Episode" ? " remoteBackdropImage" : " remotePosterImage";
|
||||
|
||||
if (currentItem.Type == "Episode") {
|
||||
cssClass += " remoteBackdropImage";
|
||||
}
|
||||
else if (currentItem.Type == "MusicAlbum" || currentItem.Type == "MusicArtist" || currentItem.Type == "Artist") {
|
||||
cssClass += " remoteDiscImage";
|
||||
}
|
||||
else {
|
||||
cssClass += " remotePosterImage";
|
||||
}
|
||||
}
|
||||
|
||||
var displayUrl = getDisplayUrl(image.ThumbnailUrl || image.Url);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue