Fixed Date #30
All checks were successful
Build and Push Docker Images / build-backend (push) Successful in 33s
Build and Push Docker Images / build-frontend (push) Successful in 5m54s

This commit is contained in:
2026-01-14 15:51:04 +01:00
parent 767152c535
commit 6f5fed0ffb
2 changed files with 5 additions and 3 deletions

View File

@@ -119,8 +119,8 @@ async function loadWorkingTimeInfo() {
// Erstellt Query-Parameter für den neuen Backend-Endpunkt
const queryParams = new URLSearchParams({
from: selectedStartDay.value,
to: selectedEndDay.value,
from: $dayjs(selectedStartDay.value).format("YYYY-MM-DD"),
to: $dayjs(selectedEndDay.value).format("YYYY-MM-DD"),
targetUserId: evaluatedUserId.value,
});