mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-02-05 04:51:09 +01:00
Merge pull request #2291 from brianjaustin/fix/collection-duration
Hide collection duration if 0
This commit is contained in:
commit
70c213ad22
@ -30,7 +30,7 @@
|
|||||||
><span :key="author.id + '-comma'" v-if="index < bookAuthors.length - 1">, </span>
|
><span :key="author.id + '-comma'" v-if="index < bookAuthors.length - 1">, </span>
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</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>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user