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

This reverts commit c8c2a800bb.
This commit is contained in:
Felix Schlusche
2025-10-23 01:46:33 +02:00
parent b63362bbaa
commit 31c156d157
3 changed files with 23 additions and 86 deletions

View File

@@ -1462,9 +1462,7 @@ async function bulkSetLocation(location) {
for (const id of selectedEntries) {
const entry = entries.find(e => e.id === id);
if (entry) {
// 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);
const success = await updateEntry(id, entry.date, entry.startTime, entry.endTime, entry.pauseMinutes, location);
if (success) {
updated++;
}