diff --git a/front/src/editor/store/transcriptions.js b/front/src/editor/store/transcriptions.js index 6004741be9b2dfcd8280312f6429ac95ca51b32e..a5aeaaa85a01a4d7a299fa646b82feae8461451a 100644 --- a/front/src/editor/store/transcriptions.js +++ b/front/src/editor/store/transcriptions.js @@ -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); }