Update download notification cancel to clear download queue in UI

This commit is contained in:
advplyr
2026-07-30 17:31:23 -05:00
parent b084e54dcc
commit e5ef38295d
3 changed files with 13 additions and 2 deletions
+3
View File
@@ -135,6 +135,9 @@ export const mutations = {
removeItemDownload(state, id) {
state.itemDownloads = state.itemDownloads.filter((i) => i.id != id)
},
clearItemDownloads(state) {
state.itemDownloads = []
},
setBookshelfListView(state, val) {
state.bookshelfListView = val
},