diff --git a/client/components/app/Appbar.vue b/client/components/app/Appbar.vue index 40457cf841..fa3b726b1f 100644 --- a/client/components/app/Appbar.vue +++ b/client/components/app/Appbar.vue @@ -37,7 +37,9 @@

{{ numAudiobooksSelected }} Selected

- {{ isAllSelected ? 'Select None' : 'Select All' }} + {{ isAllSelected ? 'Select None' : 'Select All' }}({{ audiobooksShowing.length }})
@@ -87,7 +89,8 @@ export default { return this.$store.state.user.user.audiobooks || {} }, audiobooksShowing() { - return this.$store.getters['audiobooks/getFiltered']() + // return this.$store.getters['audiobooks/getFiltered']() + return this.$store.getters['audiobooks/getEntitiesShowing']() }, userCanUpdate() { return this.$store.getters['user/getUserCanUpdate'] diff --git a/client/components/app/BookShelf.vue b/client/components/app/BookShelf.vue index 262b7054d9..220d2cf16d 100644 --- a/client/components/app/BookShelf.vue +++ b/client/components/app/BookShelf.vue @@ -23,7 +23,7 @@
diff --git a/client/components/cards/BookCard.vue b/client/components/cards/BookCard.vue index 5ce8533103..7896132b85 100644 --- a/client/components/cards/BookCard.vue +++ b/client/components/cards/BookCard.vue @@ -33,6 +33,10 @@

#{{ volumeNumber }}

+ +
@@ -78,6 +82,9 @@ export default { audiobookId() { return this.audiobook.id }, + hasEbook() { + return this.audiobook.numEbooks + }, isSelectionMode() { return this.$store.getters['getNumAudiobooksSelected'] }, diff --git a/client/components/tables/AudioFilesTable.vue b/client/components/tables/AudioFilesTable.vue index b1201bd107..899f432c7e 100644 --- a/client/components/tables/AudioFilesTable.vue +++ b/client/components/tables/AudioFilesTable.vue @@ -23,7 +23,7 @@