diff --git a/web/src/components/photos/carousel.astro b/web/src/components/photos/carousel.astro index 13572fa..1dda105 100644 --- a/web/src/components/photos/carousel.astro +++ b/web/src/components/photos/carousel.astro @@ -45,10 +45,10 @@ const getImageLink = async (record: any) => { titleEl.textContent = currentPhoto.title || "Untitled"; } if (cameraEl) { - cameraEl.textContent = currentPhoto.camera || ""; + cameraEl.textContent = `📸 ${currentPhoto.camera}` } if (locationEl) { - locationEl.textContent = currentPhoto.location || ""; + locationEl.textContent = `📌 ${currentPhoto.location}` } }