From 14d11a8ae38e91c5fc790dfc5cc5151cf6473ba2 Mon Sep 17 00:00:00 2001 From: sakrecoer Date: Tue, 4 Aug 2026 11:23:45 +0200 Subject: [PATCH] don't show hex pubkey --- themes/one-pager/assets/js/scripts.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/themes/one-pager/assets/js/scripts.js b/themes/one-pager/assets/js/scripts.js index ec69201..d1a0b5e 100644 --- a/themes/one-pager/assets/js/scripts.js +++ b/themes/one-pager/assets/js/scripts.js @@ -61,10 +61,7 @@ function openPhotoLightbox(index) { year: 'numeric', month: 'short', day: 'numeric' }); if (dateStr) metaText += `📅 ${dateStr}`; - if (photo.pubkey) { - if (metaText) metaText += ' | '; - metaText += `🖊️ ${photo.pubkey}`; - } + lightboxMeta.textContent = metaText || '📅 No date available'; lightboxCounter.textContent = `${currentPhotoIndex + 1} / ${allPicturesArray.length}`;