diff --git a/scouting/main/templates/index.html b/scouting/main/templates/index.html index fef0af3..5e4e848 100644 --- a/scouting/main/templates/index.html +++ b/scouting/main/templates/index.html @@ -290,7 +290,12 @@ }, init() { - this.get_year_data(); + setTimeout(() => { + this.selected_year = this.$refs.year.value; + + this.get_year_data(); + }, 100) + } }; }