Pass lib ID to toolbar so it can refresh state when clearing issues. Fixes #694

This commit is contained in:
barry 2022-09-01 21:03:41 -04:00
parent 149f52b33c
commit eb25ca7af5
2 changed files with 6 additions and 4 deletions

View file

@ -89,7 +89,8 @@ export default {
authors: {
type: Array,
default: () => []
}
},
libraryId: String
},
data() {
return {
@ -215,6 +216,7 @@ export default {
this.$toast.success('Removed library items with issues')
this.$router.push(`/library/${this.currentLibraryId}/bookshelf`)
this.processingIssues = false
this.$store.dispatch('libraries/fetch', this.libraryId)
})
.catch((error) => {
console.error('Failed to remove library items with issues', error)
@ -302,4 +304,4 @@ export default {
#toolbar {
box-shadow: 0px 8px 6px #111111aa;
}
</style>
</style>