diff --git a/client/components/cards/LazyBookCard.vue b/client/components/cards/LazyBookCard.vue index e7ef5eee0..5a4897e64 100644 --- a/client/components/cards/LazyBookCard.vue +++ b/client/components/cards/LazyBookCard.vue @@ -355,11 +355,11 @@ export default { } if (this.orderBy === 'startedDate') { if (!this.userProgressStartedDate) return '\u00A0' - return this.$getString('LabelFileStartedDate', [this.$formatDate(this.userProgressStartedDate, this.dateFormat, this.timeFormat)]) + return this.$getString('LabelFileStartedDate', [this.$formatDatetime(this.userProgressStartedDate, this.dateFormat, this.timeFormat)]) } if (this.orderBy === 'finishedDate') { if (!this.userProgressFinishedDate) return '\u00A0' - return this.$getString('LabelFileFinishedDate', [this.$formatDate(this.userProgressFinishedDate, this.dateFormat, this.timeFormat)]) + return this.$getString('LabelFileFinishedDate', [this.$formatDatetime(this.userProgressFinishedDate, this.dateFormat, this.timeFormat)]) } return null },