From 360a4d83db8689a04568a5e1122b1614d831b939 Mon Sep 17 00:00:00 2001 From: Laan Tungir Date: Wed, 1 Jul 2026 16:54:24 -0400 Subject: [PATCH] Add debug logging for notification menu items --- www/js/version.json | 6 +++--- www/notifications.html | 6 ++++++ 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/www/js/version.json b/www/js/version.json index 171c25f..76b9d64 100644 --- a/www/js/version.json +++ b/www/js/version.json @@ -1,5 +1,5 @@ { - "VERSION": "v0.7.89", - "VERSION_NUMBER": "0.7.89", - "BUILD_DATE": "2026-07-01T20:50:21.925Z" + "VERSION": "v0.7.90", + "VERSION_NUMBER": "0.7.90", + "BUILD_DATE": "2026-07-01T20:54:24.423Z" } diff --git a/www/notifications.html b/www/notifications.html index 90fd3b4..0b9ef2f 100644 --- a/www/notifications.html +++ b/www/notifications.html @@ -1108,6 +1108,12 @@ import { createProfileCache } from './js/profile-cache.mjs'; // post-interactions module via a detached interaction bar (kept out of // the DOM so it never shows up in the row). Menu items trigger clicks // on the corresponding buttons in that detached bar. + console.log('[notifications] buildNotificationRow menu check', { + notifId: item.id, + kind: item.kind, + targetEventId: item.targetEventId, + hasInteractions: !!interactions + }); if (item.targetEventId && interactions) { const targetPubkey = item.targetPubkey || currentPubkey; const targetEventData = { id: item.targetEventId, pubkey: targetPubkey };