Skip to content
Snippets Groups Projects
Commit 4c9e68cb authored by Regis's avatar Regis
Browse files

change 'body' to 'data' after 'JSON.parse'

parent edbf9880
No related branches found
No related tags found
1 merge request!10865Render Description Realtime :tada:
Pipeline #
Loading
@@ -39,11 +39,11 @@ export default {
Loading
@@ -39,11 +39,11 @@ export default {
}, },
methods: { methods: {
renderResponse(res) { renderResponse(res) {
const body = JSON.parse(res.body); const data = JSON.parse(res.body);
this.triggerAnimation(body); this.triggerAnimation(data);
}, },
updateTaskHTML(body) { updateTaskHTML(data) {
this.taskStatus = body.task_status; this.taskStatus = data.task_status;
document.querySelector('#task_status').innerText = this.taskStatus; document.querySelector('#task_status').innerText = this.taskStatus;
}, },
elementsToVisualize(noTitleChange, noDescriptionChange) { elementsToVisualize(noTitleChange, noDescriptionChange) {
Loading
@@ -80,13 +80,13 @@ export default {
Loading
@@ -80,13 +80,13 @@ export default {
clearTimeout(this.timeoutId); clearTimeout(this.timeoutId);
}, 0); }, 0);
}, },
triggerAnimation(body) { triggerAnimation(data) {
// always reset to false before checking the change // always reset to false before checking the change
this.descriptionChange = false; this.descriptionChange = false;
   
const { title, description } = body; const { title, description } = data;
this.descriptionText = body.description_text; this.descriptionText = data.description_text;
this.updateTaskHTML(body); this.updateTaskHTML(data);
/** /**
* since opacity is changed, even if there is no diff for Vue to update * since opacity is changed, even if there is no diff for Vue to update
* we must check the title/description even on a 304 to ensure no visual change * we must check the title/description even on a 304 to ensure no visual change
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment