DEBUG: title/artist/id selectable
All checks were successful
Deploy App / build (push) Successful in 47s
Deploy App / deploy (push) Successful in 15s

This commit is contained in:
valere
2025-11-27 09:13:44 +01:00
parent a79f044096
commit 9f70419ea5

View File

@@ -35,17 +35,19 @@
<!-- Body --> <!-- Body -->
<div class="select-text p-3 text-center bg-white rounded-b-xl"> <div class="p-3 text-center bg-white rounded-b-xl">
<div v-if="isOrder" class="label"> <div v-if="isOrder" class="label">
{{ props.track.order }} {{ props.track.order }}
</div> </div>
<h2 class="text-sm text-neutral-500 first-letter:uppercase truncate"> <h2 class="select-text text-sm text-neutral-500 first-letter:uppercase truncate">
{{ props.track.title }} {{ props.track.title }}
</h2> </h2>
<p v-if="isPlaylistTrack" class="text-base text-neutral-800 font-bold capitalize truncate"> <p v-if="isPlaylistTrack" class="select-text text-base text-neutral-800 font-bold capitalize truncate">
{{ props.track.artist.name }} {{ props.track.artist.name }}
</p> </p>
{{ props.track.url.split('/')[4]?.split('__')[0] }} <p class="select-text">
{{ props.track.url.split('/')[4]?.split('__')[0] }}
</p>
</div> </div>
</main> </main>