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

fixes #296 - Prevent non-movie videos from appearing in Movies view

This commit is contained in:
Luke Pulverenti 2013-05-27 21:59:26 -04:00
parent a3e75d5502
commit 8a7dffff51
16 changed files with 494 additions and 25 deletions

View file

@ -160,6 +160,11 @@
html += '<div class="searchHintSecondaryText">Movie</div>';
}
else if (hint.Type == "MusicVideo") {
html += '<div class="searchHintSecondaryText">Music Video</div>';
}
else if (hint.Type == "Episode") {