diff --git a/client/components/cards/LazyBookCard.vue b/client/components/cards/LazyBookCard.vue index 955e18d9..41b73310 100644 --- a/client/components/cards/LazyBookCard.vue +++ b/client/components/cards/LazyBookCard.vue @@ -101,8 +101,7 @@

- Episode - #{{ recentEpisodeNumber }} + Episode #{{ recentEpisodeNumber }}

@@ -201,9 +200,6 @@ export default { dateFormat() { return this.store.getters['getServerSetting']('dateFormat') }, - timeFormat() { - return this.store.getters['getServerSetting']('timeFormat') - }, _libraryItem() { return this.libraryItem || {} }, @@ -349,10 +345,6 @@ export default { if (this.mediaMetadata.publishedYear) return this.$getString('LabelPublishedDate', [this.mediaMetadata.publishedYear]) return '\u00A0' } - if (this.orderBy === 'progress') { - if (!this.userProgressLastUpdated) return '\u00A0' - return this.$getString('LabelLastProgressDate', [this.$formatDatetime(this.userProgressLastUpdated, this.dateFormat, this.timeFormat)]) - } return null }, episodeProgress() { @@ -385,10 +377,6 @@ export default { let progressPercent = this.itemIsFinished ? 1 : this.booksInSeries ? this.seriesProgressPercent : this.useEBookProgress ? this.userProgress?.ebookProgress || 0 : this.userProgress?.progress || 0 return Math.max(Math.min(1, progressPercent), 0) }, - userProgressLastUpdated() { - if (!this.userProgress) return null - return this.userProgress.lastUpdate - }, itemIsFinished() { if (this.booksInSeries) return this.seriesIsFinished return this.userProgress ? !!this.userProgress.isFinished : false diff --git a/client/components/controls/LibrarySortSelect.vue b/client/components/controls/LibrarySortSelect.vue index 536c93f1..7e83928f 100644 --- a/client/components/controls/LibrarySortSelect.vue +++ b/client/components/controls/LibrarySortSelect.vue @@ -7,7 +7,7 @@ -