Compare commits

..

1 Commits

Author SHA1 Message Date
Laan Tungir
360a4d83db Add debug logging for notification menu items 2026-07-01 16:54:24 -04:00
2 changed files with 9 additions and 3 deletions

View File

@@ -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"
}

View File

@@ -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 };