Added any tutor option to stats page too.

This commit is contained in:
neviyn 2018-10-11 11:48:57 +01:00
parent 6a4718d16f
commit 7217067690

View File

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