diff --git a/app/static/app/js/home01.js b/app/static/app/js/home01.js index 5aa0027..a791f24 100644 --- a/app/static/app/js/home01.js +++ b/app/static/app/js/home01.js @@ -177,9 +177,10 @@ async function getActualDataAndFillView(monat = currentDate.getMonth(), jahr = c }); // Filter funktion aufrufen und entsprechend mit dem aktuellen Datum füllen - const filteredEntries = await filterEntriesByMonthYear(monat === 12 ? 1 : monat + 1, monat + 1 >= 9 ? jahr + 1 : jahr); + const filteredEntries = await filterEntriesByMonthYear(monat === 12 ? 1 : monat + 1, jahr); console.log("update-complete") + console.log(jahr) // Tabelle mit den aktuellen informationen füllen (funktion triggern und Daten übergeben) fillTableWithEntries(filteredEntries)