1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

fixed image uploading for virtual items

This commit is contained in:
Luke Pulverenti 2013-05-18 13:07:20 -04:00
parent fad47c6a3b
commit c73b7385b4
13 changed files with 52 additions and 2 deletions

View file

@ -155,6 +155,21 @@
html += '<div class="searchHintSecondaryText">' + hint.AlbumArtist + '</div>';
}
else if (hint.Type == "Movie") {
html += '<div class="searchHintSecondaryText">Movie</div>';
}
else if (hint.Type == "Episode") {
html += '<div class="searchHintSecondaryText">Episode</div>';
}
else if (hint.Type == "Series") {
html += '<div class="searchHintSecondaryText">Series</div>';
}
else {
html += '<div class="searchHintSecondaryText">' + (hint.DisplayMediaType || hint.Type) + '</div>';