Skip to content
Snippets Groups Projects
Commit fe570813 authored by Lene Wasskog's avatar Lene Wasskog
Browse files

feat: Set start year for gridmaps to 2023

parent f0a1971d
No related branches found
No related tags found
No related merge requests found
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
$(document).ready(function() { $(document).ready(function() {
// Populate the year select element // Populate the year select element
const currentYear = getSystemTime().year(); const currentYear = getSystemTime().year();
const startYear = 2024; const startYear = 2023;
const yearSelect = document.getElementById('year'); const yearSelect = document.getElementById('year');
for (let year = startYear; year <= currentYear; year++) { for (let year = startYear; year <= currentYear; year++) {
const option = document.createElement('option'); const option = document.createElement('option');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment