Fix:Aspect ratio of authors image on authors landing page #2227

This commit is contained in:
advplyr 2023-10-18 17:10:53 -05:00
parent 516b0b4464
commit 8c5ce6149f
6 changed files with 7 additions and 7 deletions

View file

@ -26,7 +26,7 @@
</div>
<div class="truncate max-w-48 md:max-w-md text-xs md:text-sm text-gray-300">
<template v-for="(author, index) in bookAuthors">
<nuxt-link :key="author.id" :to="`/author/${author.id}?library=${book.libraryId}`" class="truncate hover:underline">{{ author.name }}</nuxt-link
<nuxt-link :key="author.id" :to="`/author/${author.id}`" class="truncate hover:underline">{{ author.name }}</nuxt-link
><span :key="author.id + '-comma'" v-if="index < bookAuthors.length - 1">,&nbsp;</span>
</template>
</div>