Fix attachments being added mutliple times
This commit is contained in:
parent
c5da0fcba4
commit
23552b2b1b
2 changed files with 4 additions and 1 deletions
|
|
@ -7,15 +7,18 @@ export default {
|
|||
}),
|
||||
mutations: {
|
||||
set(state, attachments) {
|
||||
console.debug('Set attachments', attachments)
|
||||
Vue.set(state, 'attachments', attachments)
|
||||
},
|
||||
add(state, attachment) {
|
||||
console.debug('Add attachement', attachment)
|
||||
state.attachments.push(attachment)
|
||||
},
|
||||
removeById(state, id) {
|
||||
for (const a in state.attachments) {
|
||||
if (state.attachments[a].id === id) {
|
||||
state.attachments.splice(a, 1)
|
||||
console.debug('Remove attachement', id)
|
||||
break
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue