diff --git a/client/components/app/BookShelfToolbar.vue b/client/components/app/BookShelfToolbar.vue index bbf30f6e..00da52c3 100644 --- a/client/components/app/BookShelfToolbar.vue +++ b/client/components/app/BookShelfToolbar.vue @@ -28,13 +28,19 @@ {{ numShowing }}
- + +
- - + + - +
Mark Series {{ isSeriesFinished ? 'Not Finished' : 'Finished' }} @@ -280,6 +286,9 @@ export default { updateCollapseSeries() { this.saveSettings() }, + updateCollapseBookSeries() { + this.saveSettings() + }, saveSettings() { this.$store.dispatch('user/updateUserSettings', this.settings) }, diff --git a/client/components/app/LazyBookshelf.vue b/client/components/app/LazyBookshelf.vue index 08ed1496..9f289dc5 100644 --- a/client/components/app/LazyBookshelf.vue +++ b/client/components/app/LazyBookshelf.vue @@ -1,12 +1,15 @@