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

show songs on ibn page

This commit is contained in:
Luke Pulverenti 2013-05-12 21:54:06 -04:00
parent 885d82d544
commit e48c0f781d
2 changed files with 19 additions and 8 deletions

View file

@ -252,7 +252,7 @@
if (item.Album && item.ParentId) {
html += '<td><a href="itemdetails.html?id=' + item.ParentId + '">' + item.Album + '</a></td>';
} else {
html += '<td></td>';
html += '<td>' + (item.Album || '') + '</td>';
}
}
@ -264,7 +264,7 @@
html += '<td><a href="itembynamedetails.html?context=music&artist=' + ApiClient.encodeName(artist) + '">' + artist + '</a></td>';
} else {
html += '<td></td>';
html += '<td>' + (artist || '') + '</td>';
}
}