From fb3099386d3c39e893f6b14c598611222972f3c1 Mon Sep 17 00:00:00 2001 From: binimum Date: Sun, 5 Apr 2026 14:45:26 +0000 Subject: [PATCH] finish merge --- js/ui.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/ui.js b/js/ui.js index 20b0c84..6d4d6e2 100644 --- a/js/ui.js +++ b/js/ui.js @@ -2621,7 +2621,7 @@ export class UIRenderer { audioQuality: item.audioQuality, mediaMetadata: item.mediaMetadata, type: 'ALBUM', - _lazy: cardsHTML.length >= 6 + _lazy: cardsHTML.length >= 6, }; cardsHTML.push(this.createAlbumCardHTML(album)); itemsToStore.push({ el: null, data: album, type: 'album' }); @@ -2652,7 +2652,7 @@ export class UIRenderer { releaseDate: item.releaseDate, type: 'ALBUM', _href: `/userplaylist/${item.id}`, - _lazy: cardsHTML.length >= 6 + _lazy: cardsHTML.length >= 6, }) ); itemsToStore.push({ el: null, data: playlist, type: 'user-playlist' }); @@ -2664,7 +2664,7 @@ export class UIRenderer { id: item.id, name: item.name, picture: item.picture, - _lazy: cardsHTML.length >= 6 + _lazy: cardsHTML.length >= 6, }; cardsHTML.push(this.createArtistCardHTML(artist)); itemsToStore.push({ el: null, data: artist, type: 'artist' });