Mentions légales du service

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

Prevent current transcription update when picking compared transcriptions

parent ab9a8176
No related branches found
No related tags found
1 merge request!62Prevent current transcription update when picking compared transcriptions
......@@ -85,7 +85,6 @@ export const mutations = {
tr[transcription.transcription] = transcription
state.all[index] = { ...state.all[index], transcriptions: tr }
}
state.all[index] = { ...state.all[index], currentTrans: transcription }
// Force reference update on the whole array
// so that all components get a full refresh after an update
state.all = [...state.all]
......
......@@ -115,6 +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})
} catch (err) {
console.log('couldnt create transcription!', err);
}
......@@ -124,6 +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})
} 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