Add:Send ebook to device button #909

This commit is contained in:
advplyr 2023-11-02 16:10:55 -05:00
parent 04e468b43d
commit fc7af6d1fc
5 changed files with 58 additions and 4 deletions

View file

@ -7,7 +7,8 @@ export const state = () => ({
showModal: false,
issues: 0,
filterData: null,
numUserPlaylists: 0
numUserPlaylists: 0,
ereaderDevices: []
})
export const getters = {
@ -177,5 +178,8 @@ export const mutations = {
if (genre && !state.filterData.genres.includes(genre)) state.filterData.genres.push(genre)
})
}
},
setEReaderDevices(state, ereaderDevices) {
state.ereaderDevices = ereaderDevices
}
}