diff --git a/components/cards/LazyListBookCard.vue b/components/cards/LazyListBookCard.vue index cc7355cb..a7b84563 100644 --- a/components/cards/LazyListBookCard.vue +++ b/components/cards/LazyListBookCard.vue @@ -16,7 +16,7 @@
- {{ displayTitle }} #{{ seriesSequence }} + #{{ seriesSequence }} {{ displayTitle }}
by {{ displayAuthor }}
{{ displaySortLine }}
@@ -109,8 +109,8 @@ export default { }, episodes() { if (this.isPodcast) { - if (this.media.numEpisodes==1) { - return "1 episode" + if (this.media.numEpisodes == 1) { + return '1 episode' } else { return this.media.numEpisodes + ' episodes' }