diff --git a/client/components/app/BookShelfToolbar.vue b/client/components/app/BookShelfToolbar.vue
index 3b31f26e..fc191626 100644
--- a/client/components/app/BookShelfToolbar.vue
+++ b/client/components/app/BookShelfToolbar.vue
@@ -49,8 +49,8 @@
{{ numShowing }}
-
-
+
+
{{ $strings.LabelMarkSeries }} {{ isSeriesFinished ? $strings.LabelNotFinished : $strings.LabelFinished }}
- Re-Add Series to Continue Listening
+ Re-Add Series to Continue Listening
@@ -69,13 +69,13 @@
-
-
-
-
-
+
+
+
+
+
- {{ $strings.ButtonRemoveAll }} {{ numShowing }} {{ entityName }}
+ {{ $strings.ButtonRemoveAll }} {{ numShowing }} {{ entityName }}
@@ -86,7 +86,7 @@
- {{ $strings.ButtonMatchAllAuthors }}
+ {{ $strings.ButtonMatchAllAuthors }}
@@ -198,6 +198,9 @@ export default {
if (!this.seriesProgress) return []
return this.seriesProgress.libraryItemIds || []
},
+ isBatchSelecting() {
+ return this.$store.state.selectedLibraryItems.length
+ },
isSeriesFinished() {
return this.seriesProgress && !!this.seriesProgress.isFinished
},