Updates and more features
Former-commit-id: 9f1f09311813203910d5b323ba80712553ee2741 [formerly 0be00be1de305d786affc6bf0886aed9b20fbc51] [formerly 04597463117e94830b24b87faaaccf3d35284427 [formerly 3f2dc3f1c56a7a636a836d36b94c052f55f32d93]] Former-commit-id: 8d26cc1d96faed73c7974ea7e5e78bf268af3ad9 [formerly a083ac8f68c90a636843c3565bd349657c0ec383] Former-commit-id: ef10f3b3c388d65ceac40785b45dbac190a6cc99
This commit is contained in:
@@ -6,6 +6,7 @@ const mutations = {
|
||||
showMove: (state, value) => (state.showMove = value),
|
||||
showNewFile: (state, value) => (state.showNewFile = value),
|
||||
showNewDir: (state, value) => (state.showNewDir = value),
|
||||
showDownload: (state, value) => (state.showDownload = value),
|
||||
resetPrompts: (state) => {
|
||||
state.showHelp = false
|
||||
state.showInfo = false
|
||||
@@ -14,6 +15,7 @@ const mutations = {
|
||||
state.showMove = false
|
||||
state.showNewFile = false
|
||||
state.showNewDir = false
|
||||
state.showDownload = false
|
||||
},
|
||||
multiple: (state, value) => (state.multiple = value),
|
||||
addSelected: (state, value) => (state.selected.push(value)),
|
||||
@@ -23,7 +25,7 @@ const mutations = {
|
||||
state.selected.splice(i, 1)
|
||||
},
|
||||
resetSelected: (state) => {
|
||||
state.selected.length = 0
|
||||
state.selected = []
|
||||
},
|
||||
updateRequest: (state, value) => {
|
||||
state.req.kind = value.kind
|
||||
|
||||
Reference in New Issue
Block a user