From fdafc901f144b659882d2c90b778bcc36c3b48ee Mon Sep 17 00:00:00 2001 From: Samuel Zielke Date: Tue, 1 Sep 2026 09:42:26 +0200 Subject: [PATCH] Hotfix: Jahreswechel --- app/static/app/js/dbcontrol.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; };