mirror of
https://github.com/gotson/komga.git
synced 2025-12-21 16:03:03 +01:00
fix(webui): adjust series unread count when marking books
This commit is contained in:
parent
a59f26365f
commit
31e21fed45
1 changed files with 2 additions and 0 deletions
|
|
@ -358,6 +358,7 @@ export default Vue.extend({
|
|||
this.selectedBooks = await Promise.all(this.selectedBooks.map(b =>
|
||||
this.$komgaBooks.getBook(b.id),
|
||||
))
|
||||
this.loadSeries(this.seriesId)
|
||||
},
|
||||
async markSelectedUnread () {
|
||||
await Promise.all(this.selectedBooks.map(b =>
|
||||
|
|
@ -366,6 +367,7 @@ export default Vue.extend({
|
|||
this.selectedBooks = await Promise.all(this.selectedBooks.map(b =>
|
||||
this.$komgaBooks.getBook(b.id),
|
||||
))
|
||||
this.loadSeries(this.seriesId)
|
||||
},
|
||||
async markRead () {
|
||||
await this.$komgaSeries.markAsRead(this.seriesId)
|
||||
|
|
|
|||
Loading…
Reference in a new issue