style: auto-fix linting issues
This commit is contained in:
parent
b3da2da672
commit
c710855874
2 changed files with 9 additions and 5 deletions
|
|
@ -89,7 +89,7 @@
|
||||||
href="https://api.fonts.coollabs.io/css2?family=Inter:wght@400;500;600;700;800&display=swap"
|
href="https://api.fonts.coollabs.io/css2?family=Inter:wght@400;500;600;700;800&display=swap"
|
||||||
rel="stylesheet"
|
rel="stylesheet"
|
||||||
media="print"
|
media="print"
|
||||||
onload="this.media='all'"
|
onload="this.media = 'all'"
|
||||||
/>
|
/>
|
||||||
<noscript>
|
<noscript>
|
||||||
<link
|
<link
|
||||||
|
|
@ -1764,7 +1764,11 @@
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<section class="content-section" id="home-editors-picks-section-empty" style="margin-top: 0; display: none;">
|
<section
|
||||||
|
class="content-section"
|
||||||
|
id="home-editors-picks-section-empty"
|
||||||
|
style="margin-top: 0; display: none"
|
||||||
|
>
|
||||||
<div
|
<div
|
||||||
style="
|
style="
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
||||||
6
js/ui.js
6
js/ui.js
|
|
@ -2621,7 +2621,7 @@ export class UIRenderer {
|
||||||
audioQuality: item.audioQuality,
|
audioQuality: item.audioQuality,
|
||||||
mediaMetadata: item.mediaMetadata,
|
mediaMetadata: item.mediaMetadata,
|
||||||
type: 'ALBUM',
|
type: 'ALBUM',
|
||||||
_lazy: cardsHTML.length >= 6
|
_lazy: cardsHTML.length >= 6,
|
||||||
};
|
};
|
||||||
cardsHTML.push(this.createAlbumCardHTML(album));
|
cardsHTML.push(this.createAlbumCardHTML(album));
|
||||||
itemsToStore.push({ el: null, data: album, type: 'album' });
|
itemsToStore.push({ el: null, data: album, type: 'album' });
|
||||||
|
|
@ -2652,7 +2652,7 @@ export class UIRenderer {
|
||||||
releaseDate: item.releaseDate,
|
releaseDate: item.releaseDate,
|
||||||
type: 'ALBUM',
|
type: 'ALBUM',
|
||||||
_href: `/userplaylist/${item.id}`,
|
_href: `/userplaylist/${item.id}`,
|
||||||
_lazy: cardsHTML.length >= 6
|
_lazy: cardsHTML.length >= 6,
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
itemsToStore.push({ el: null, data: playlist, type: 'user-playlist' });
|
itemsToStore.push({ el: null, data: playlist, type: 'user-playlist' });
|
||||||
|
|
@ -2664,7 +2664,7 @@ export class UIRenderer {
|
||||||
id: item.id,
|
id: item.id,
|
||||||
name: item.name,
|
name: item.name,
|
||||||
picture: item.picture,
|
picture: item.picture,
|
||||||
_lazy: cardsHTML.length >= 6
|
_lazy: cardsHTML.length >= 6,
|
||||||
};
|
};
|
||||||
cardsHTML.push(this.createArtistCardHTML(artist));
|
cardsHTML.push(this.createArtistCardHTML(artist));
|
||||||
itemsToStore.push({ el: null, data: artist, type: 'artist' });
|
itemsToStore.push({ el: null, data: artist, type: 'artist' });
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue