From 322f7d75dddbce02a6e35556f1f7a96e294718a5 Mon Sep 17 00:00:00 2001 From: advplyr Date: Thu, 2 Mar 2023 17:17:49 -0600 Subject: [PATCH] Fix:Show episode title on home page shelves #616 --- components/cards/LazyBookCard.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/components/cards/LazyBookCard.vue b/components/cards/LazyBookCard.vue index 0ff4f236..606d45d1 100644 --- a/components/cards/LazyBookCard.vue +++ b/components/cards/LazyBookCard.vue @@ -227,6 +227,7 @@ export default { return this.collapsedSeries ? this.collapsedSeries.numBooks : 0 }, displayTitle() { + if (this.recentEpisode) return this.recentEpisode.title if (this.orderBy === 'media.metadata.title' && this.sortingIgnorePrefix && this.title.toLowerCase().startsWith('the ')) { return this.title.substr(4) + ', The' }