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

Fix music videos on artist and album page

This commit is contained in:
David Ullmer 2021-04-09 18:48:15 +02:00
parent f8db818be2
commit 025ec66174
2 changed files with 3 additions and 3 deletions

View file

@ -1795,7 +1795,7 @@ function renderMusicVideos(page, item, user) {
}).then(function (result) {
if (result.Items.length) {
page.querySelector('#musicVideosCollapsible').classList.remove('hide');
const musicVideosContent = page.querySelector('.musicVideosContent');
const musicVideosContent = page.querySelector('#musicVideosContent');
musicVideosContent.innerHTML = getVideosHtml(result.Items);
imageLoader.lazyChildren(musicVideosContent);
} else {