From 6a4718d16f3e279752d1b5e185caf307be040036 Mon Sep 17 00:00:00 2001 From: Nathan Cannon Date: Thu, 11 Oct 2018 11:46:21 +0100 Subject: [PATCH] Formatting. --- frontend/src/views/ViewObservations.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/src/views/ViewObservations.vue b/frontend/src/views/ViewObservations.vue index 17a02a5..5f05e5f 100644 --- a/frontend/src/views/ViewObservations.vue +++ b/frontend/src/views/ViewObservations.vue @@ -170,7 +170,9 @@ export default { Vue.axios .get("/site/" + this.siteSelection + "/tutors") .then(response => { - this.tutorOptions = [{text:"Any", value:null}].concat(response.data); + this.tutorOptions = [{ text: "Any", value: null }].concat( + response.data + ); }); } }