diff --git a/frontend/src/views/Stats.vue b/frontend/src/views/Stats.vue index 3c8aed6..62c387e 100644 --- a/frontend/src/views/Stats.vue +++ b/frontend/src/views/Stats.vue @@ -142,7 +142,9 @@ export default { Vue.axios .get("/site/" + this.siteSelection + "/tutors") .then(response => { - this.tutorOptions = response.data; + this.tutorOptions = [{ text: "Any", value: null }].concat( + response.data + ); }); } },