mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-08-28 13:58:40 +02:00
Initial commit
This commit is contained in:
parent
ae4ac392c6
commit
7d4e7ce2c0
3 changed files with 82 additions and 1 deletions
|
@ -14,6 +14,7 @@ export const state = () => ({
|
|||
selectedAuthor: null,
|
||||
isCasting: false, // Actively casting
|
||||
isChromecastInitialized: false, // Script loaded
|
||||
showBatchQuickMatchModal: false,
|
||||
dateFormats: [
|
||||
{
|
||||
text: 'MM/DD/YYYY',
|
||||
|
@ -108,5 +109,9 @@ export const mutations = {
|
|||
},
|
||||
setCasting(state, val) {
|
||||
state.isCasting = val
|
||||
},
|
||||
setShowBatchQuickMatchModal(state, val) {
|
||||
console.log("setShowBatchQuickMatchModal: " + val)
|
||||
state.showBatchQuickMatchModal = val
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue