mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-07-30 15:55:26 +02:00
Update:Cleanup bookshelf toolbars & fix siderail icon
This commit is contained in:
parent
685b4e77eb
commit
e752b4071d
12 changed files with 121 additions and 88 deletions
|
@ -8,7 +8,9 @@ export const state = () => ({
|
|||
folders: [],
|
||||
issues: 0,
|
||||
folderLastUpdate: 0,
|
||||
filterData: null
|
||||
filterData: null,
|
||||
seriesSort: 'name',
|
||||
seriesSortDesc: false
|
||||
})
|
||||
|
||||
export const getters = {
|
||||
|
@ -289,5 +291,9 @@ export const mutations = {
|
|||
state.filterData.languages.sort((a, b) => a.localeCompare(b))
|
||||
}
|
||||
}
|
||||
},
|
||||
setSeriesSort(state, { sort, desc }) {
|
||||
state.seriesSort = sort
|
||||
state.seriesSortDesc = desc
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue