Add formatting tweak to submit.js

main
sudoer777 2021-11-22 14:07:51 -07:00
parent 77359ba3a7
commit 1ce1bdb27c
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ async function listSeasons() {
seasonsList.forEach(season => {
const option = document.createElement('option');
option.text = season.year - 1 + "-" + season.year;
option.text = (season.year - 1) + "-" + season.year;
option.value = season.id;
seasonDropdown.appendChild(option);
});