Formatting.

This commit is contained in:
neviyn 2018-10-11 11:46:21 +01:00
parent c4fb3e5800
commit 6a4718d16f

View File

@ -170,7 +170,9 @@ export default {
Vue.axios Vue.axios
.get("/site/" + this.siteSelection + "/tutors") .get("/site/" + this.siteSelection + "/tutors")
.then(response => { .then(response => {
this.tutorOptions = [{text:"Any", value:null}].concat(response.data); this.tutorOptions = [{ text: "Any", value: null }].concat(
response.data
);
}); });
} }
} }