From f6b922fe8d4ca6e13de1b76b08d4ed7ec7312bea Mon Sep 17 00:00:00 2001 From: advplyr Date: Sun, 24 Aug 2025 15:58:56 -0500 Subject: [PATCH] Fix book card started/finished sort option to use formatDatetime --- client/components/cards/LazyBookCard.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 },