Update:Hide duration on collection items that have no duration

This commit is contained in:
advplyr 2023-11-06 16:21:52 -06:00
parent 087e8553c4
commit c1b13dcd24

View file

@ -8,7 +8,7 @@
<div class="max-w-full"> <div class="max-w-full">
<p class="truncate block text-sm">{{ bookTitle }}</p> <p class="truncate block text-sm">{{ bookTitle }}</p>
<p class="truncate block text-gray-400 text-xs">{{ bookAuthor }}</p> <p class="truncate block text-gray-400 text-xs">{{ bookAuthor }}</p>
<p class="text-xxs text-gray-500">{{ bookDuration }}</p> <p v-if="media.duration" class="text-xxs text-gray-500">{{ bookDuration }}</p>
</div> </div>
</div> </div>
<div class="w-8 min-w-8 flex justify-center"> <div class="w-8 min-w-8 flex justify-center">