diff --git a/static/app/components/notifications/notificationCentre.tsx b/static/app/components/notifications/notificationCentre.tsx index 84d1e679c81c8f..8b1a92dfea016c 100644 --- a/static/app/components/notifications/notificationCentre.tsx +++ b/static/app/components/notifications/notificationCentre.tsx @@ -67,7 +67,10 @@ export function NotificationCentre({}: NotificationCentreProps) { ? mailboxNotifs.filter(notif => sources.includes(notif.source)) : mailboxNotifs; const searchedNotifs = filteredNotifs.filter( - notif => notif.description.includes(search) || notif.title.includes(search) + notif => + notif.description.includes(search) || + notif.title.includes(search) || + JSON.stringify(notif.content).includes(search) ); return searchedNotifs; }, [mailbox, notifs, sources, search]); diff --git a/static/app/components/notifications/notificationItem.tsx b/static/app/components/notifications/notificationItem.tsx index 61a17fd92591e9..e468bd2a17f6bd 100644 --- a/static/app/components/notifications/notificationItem.tsx +++ b/static/app/components/notifications/notificationItem.tsx @@ -56,7 +56,7 @@ export function NotificationItem({notification}: {notification: NotificationHist const notifTime = new Date(notification.date_added); return ( - +