feature/IO-3096-GlobalNotifications - Checkpoint - Notification Center

This commit is contained in:
Dave Richer
2025-02-25 14:01:57 -05:00
parent 4f1c0b9996
commit 015f4cc5bd
2 changed files with 57 additions and 46 deletions

View File

@@ -24,7 +24,7 @@ const NotificationCenterComponent = ({
scenarioTextLength: notification.scenarioText.length,
read: notification.read,
created_at: notification.created_at,
associationid: notification.associationid // Log associationid for debugging
associationid: notification.associationid
});
return (
<List.Item
@@ -41,6 +41,7 @@ const NotificationCenterComponent = ({
</ul>
</Text>
<Text type="secondary">{new Date(notification.created_at).toLocaleString()}</Text>
{notification.associationid && <Text type="secondary">Association ID: {notification.associationid}</Text>}
</div>
</Badge>
</List.Item>