From e2e41a7c45444f7f71121c4eabf69e1e2cbecd3b Mon Sep 17 00:00:00 2001 From: Arne Baeumler Date: Fri, 12 Jun 2026 14:55:04 +0200 Subject: [PATCH] fix(ui): restore map script parsing --- src/server/request-handler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/request-handler.ts b/src/server/request-handler.ts index 6344862..ef4d280 100644 --- a/src/server/request-handler.ts +++ b/src/server/request-handler.ts @@ -1639,7 +1639,7 @@ function htmlPage(): string { const item = document.createElement("article"); item.className = "photo" + (photo.id === state.activePhotoId ? " active" : ""); - const photoTitle = photo.name + "\n" + formatDate(photo.capturedAt); + const photoTitle = photo.name + " - " + formatDate(photo.capturedAt); item.title = photoTitle; item.setAttribute("aria-label", photoTitle); item.innerHTML =