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:
parent
fad47c6a3b
commit
c73b7385b4
13 changed files with 52 additions and 2 deletions
|
@ -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>';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue