From d3147da9aa614c97c6666dbb7e9aba4fe813fbb6 Mon Sep 17 00:00:00 2001 From: Nathan Cannon Date: Fri, 21 Sep 2018 10:12:15 +0100 Subject: [PATCH] Added monitoring totals into submission data. --- frontend/src/views/Observation.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/src/views/Observation.vue b/frontend/src/views/Observation.vue index f90301e..a30899d 100644 --- a/frontend/src/views/Observation.vue +++ b/frontend/src/views/Observation.vue @@ -214,11 +214,11 @@ export default { tutorIds: this.tutors, observed: this.description, type: this.type, - monitoring: "", - control: "", - conservatism: "", - teamwork: "", - knowledge: "", + monitoring: this.totals[0], + control: this.totals[1], + conservatism: this.totals[2], + teamwork: this.totals[3], + knowledge: this.totals[4], rawData: this.observations }) .then(function(response) {