Persist bookshelf list view setting, fix collections for new data model, add authors cards, update filters

This commit is contained in:
advplyr
2022-04-08 19:05:32 -05:00
parent f309e1fcf2
commit 9ad351f0d7
18 changed files with 296 additions and 67 deletions
+5 -1
View File
@@ -1,6 +1,7 @@
export const state = () => ({
itemDownloads: [],
bookshelfListView: false
bookshelfListView: false,
series: null
})
export const getters = {
@@ -45,5 +46,8 @@ export const mutations = {
},
setBookshelfListView(state, val) {
state.bookshelfListView = val
},
setSeries(state, val) {
state.series = val
}
}