diff --git a/app/static/app/js/dbcontrol.js b/app/static/app/js/dbcontrol.js index 51794dc..331327e 100644 --- a/app/static/app/js/dbcontrol.js +++ b/app/static/app/js/dbcontrol.js @@ -244,7 +244,7 @@ function filterEntriesByMonthYear(month, year) { const matchesMonth = month ? entryDate.getMonth() + 1 === month : true; // +1 da getMonth() 0-basiert ist if (entryDate.getMonth() + 1 >= 9){ - actualYear = actualYear - 1; + actualYear = actualYear - 0; } else { actualYear = actualYear; };