your personal website on atproto - mirror blento.app

Merge pull request #233 from flo-bit/formatting

format

authored by

Florian and committed by
GitHub
0d2e819d ef479ff6

+8 -3
+1 -1
src/lib/cards/media/RockskyPlaysCard/AlbumArt.svelte
··· 25 </div> 26 {:else} 27 <img 28 - src="{albumArtUrl}" 29 {alt} 30 class="h-10 w-10 rounded-lg object-cover {isLoading && 'hidden'}" 31 onload={() => {
··· 25 </div> 26 {:else} 27 <img 28 + src={albumArtUrl} 29 {alt} 30 class="h-10 w-10 rounded-lg object-cover {isLoading && 'hidden'}" 31 onload={() => {
+7 -2
src/lib/cards/media/RockskyPlaysCard/RockskyPlaysCard.svelte
··· 89 {#if feed && feed.length > 0} 90 {#each feed as play (play.uri)} 91 {#if play.uri} 92 - <a href="https://rocksky.app/{did}/scrobble/{play.uri.split('/').at(-1)}" target="_blank" rel="noopener noreferrer" class="w-full"> 93 - <!-- {#if play.value.spotifyLink} 94 <a href={play.value.spotifyLink} target="_blank" rel="noopener noreferrer" class="w-full"> --> 95 {@render musicItem(play)} 96 </a>
··· 89 {#if feed && feed.length > 0} 90 {#each feed as play (play.uri)} 91 {#if play.uri} 92 + <a 93 + href="https://rocksky.app/{did}/scrobble/{play.uri.split('/').at(-1)}" 94 + target="_blank" 95 + rel="noopener noreferrer" 96 + class="w-full" 97 + > 98 + <!-- {#if play.value.spotifyLink} 99 <a href={play.value.spotifyLink} target="_blank" rel="noopener noreferrer" class="w-full"> --> 100 {@render musicItem(play)} 101 </a>