Skip to content

Commit

Permalink
fix: Fixed issue where year selector wasn't showing correct stat with…
Browse files Browse the repository at this point in the history
… multiple years
  • Loading branch information
nfoert committed Jan 5, 2025
1 parent 4bfb758 commit e823f83
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion scouting/main/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,12 @@
},

init() {
this.get_year_data();
setTimeout(() => {
this.selected_year = this.$refs.year.value;

this.get_year_data();
}, 100)

}
};
}
Expand Down

0 comments on commit e823f83

Please sign in to comment.