diff --git a/components/bookshelf/LazyBookshelf.vue b/components/bookshelf/LazyBookshelf.vue
index 386b5fe4..6ca0c1fa 100644
--- a/components/bookshelf/LazyBookshelf.vue
+++ b/components/bookshelf/LazyBookshelf.vue
@@ -3,6 +3,7 @@
diff --git a/components/cards/LazyListBookCard.vue b/components/cards/LazyListBookCard.vue
index cdd0fcb3..487af614 100644
--- a/components/cards/LazyListBookCard.vue
+++ b/components/cards/LazyListBookCard.vue
@@ -20,6 +20,7 @@
by {{ displayAuthor }}
{{ displaySortLine }}
+ {{ $elapsedPretty(duration) }}
@@ -99,6 +100,9 @@ export default {
mediaType() {
return this._libraryItem.mediaType
},
+ duration() {
+ return this.media.duration
+ },
isPodcast() {
return this.mediaType === 'podcast'
},