Add icons to the update func

This commit is contained in:
2025-11-14 14:57:28 +13:00
parent 2207844229
commit c37a78e409

View File

@@ -45,10 +45,10 @@ const getImageLink = async (record: any) => {
titleEl.textContent = currentPhoto.title || "Untitled"; titleEl.textContent = currentPhoto.title || "Untitled";
} }
if (cameraEl) { if (cameraEl) {
cameraEl.textContent = currentPhoto.camera || ""; cameraEl.textContent = `📸 ${currentPhoto.camera}`
} }
if (locationEl) { if (locationEl) {
locationEl.textContent = currentPhoto.location || ""; locationEl.textContent = `📌 ${currentPhoto.location}`
} }
} }