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 + ); }); } }