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

Merge pull request #2572 from Ullmie02/music_video_fix

Fix music videos on artist and album page

(cherry picked from commit e813fa7b64)
Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
This commit is contained in:
Bill Thornton 2021-04-09 13:15:51 -04:00 committed by Joshua M. Boniface
parent b9e0dd4938
commit 32d152150b
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 {

View file

@ -146,7 +146,7 @@ function renderSection(page, item, element, type) {
Limit: 10,
SortBy: 'SortName'
}, {
shape: 'overflowPortrait',
shape: 'overflowBackdrop',
showTitle: true,
centerText: true,
overlayPlayButton: true
@ -329,7 +329,7 @@ function addCurrentItemToQuery(query, item) {
} else if (item.Type === 'Studio') {
query.StudioIds = item.Id;
} else if (item.Type === 'MusicArtist') {
query.AlbumArtistIds = item.Id;
query.ArtistIds = item.Id;
}
}