Update README.md with installation instructions and Docker usage; add docker-compose.yml for service orchestration

This commit is contained in:
Felix Schlusche
2025-10-23 00:57:37 +02:00
parent b4967327a1
commit c8c2a800bb
3 changed files with 86 additions and 23 deletions

View File

@@ -1462,7 +1462,9 @@ async function bulkSetLocation(location) {
for (const id of selectedEntries) {
const entry = entries.find(e => e.id === id);
if (entry) {
const success = await updateEntry(id, entry.date, entry.startTime, entry.endTime, entry.pauseMinutes, location);
// Convert date from YYYY-MM-DD to DD.MM.YYYY for updateEntry
const formattedDate = formatDateDisplay(entry.date);
const success = await updateEntry(id, formattedDate, entry.startTime, entry.endTime, entry.pauseMinutes, location);
if (success) {
updated++;
}