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

fix shared item page

This commit is contained in:
Luke Pulverenti 2016-02-13 10:56:58 -05:00
parent 14b19bb60f
commit 404971a112
2 changed files with 6 additions and 2 deletions

View file

@ -408,7 +408,10 @@
function renderDetails(page, item, context, isStatic) {
renderSimilarItems(page, item, context);
renderSiblingLinks(page, item, context);
if (!isStatic) {
renderSiblingLinks(page, item, context);
}
if (item.Taglines && item.Taglines.length) {
$('.tagline', page).html(item.Taglines[0]).show();