Merge pull request #2291 from brianjaustin/fix/collection-duration

Hide collection duration if 0
This commit is contained in:
advplyr 2023-11-06 16:21:25 -06:00 committed by GitHub
commit 70c213ad22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,7 +30,7 @@
><span :key="author.id + '-comma'" v-if="index < bookAuthors.length - 1">,&nbsp;</span>
</template>
</div>
<p class="text-xs md:text-sm text-gray-400">{{ bookDuration }}</p>
<p v-if="media.duration" class="text-xs md:text-sm text-gray-400">{{ bookDuration }}</p>
</div>
</div>
</div>