Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 880e2097 authored by Eva Bardou's avatar Eva Bardou
Browse files

Send pk to mutation

parent df21fa65
Branches
Tags
1 merge request!62Prevent current transcription update when picking compared transcriptions
......@@ -115,7 +115,7 @@ export const actions = {
try {
const resp = await api.createContent(rootState.document.id, rootState.parts.pk, content)
commit('lines/setTranscriptions', { pk: currentTransLine, transcription: resp.data }, {root: true})
commit('lines/updateCurrentTrans', resp.data, {root: true})
commit('lines/updateCurrentTrans', resp.data.transcription, {root: true})
} catch (err) {
console.log('couldnt create transcription!', err);
}
......@@ -125,7 +125,7 @@ export const actions = {
try {
const resp = await api.updateContent(rootState.document.id, rootState.parts.pk, pk, content)
commit('lines/setTranscriptions', { pk: currentTransLine, transcription: resp.data }, {root: true})
commit('lines/updateCurrentTrans', resp.data, {root: true})
commit('lines/updateCurrentTrans', resp.data.transcription, {root: true})
} catch (err) {
console.log('couldnt update transcription!', err);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment