Commit 4c9e68cb authored by Regis's avatar Regis

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

parent edbf9880
...@@ -39,11 +39,11 @@ export default { ...@@ -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) {
...@@ -80,13 +80,13 @@ export default { ...@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment