Added option to tutor list for no filtering.

This commit is contained in:
neviyn 2018-10-11 11:45:58 +01:00
parent a0fcec8113
commit c4fb3e5800

View File

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