Skip to content

Commit

Permalink
Merge pull request #2889 from radekkaluzik/RHCLOUD-29374-CHROME
Browse files Browse the repository at this point in the history
Update URL params for notitication items to point to its configuratio…
  • Loading branch information
Hyperkid123 authored Jul 8, 2024
2 parents dc1bbd1 + fbed933 commit 7ebd65c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/NotificationsDrawer/NotificationItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@ const NotificationItem: React.FC<NotificationItemProps> = ({ notification, onNav

const notificationDropdownItems = [
<DropdownItem key="read" onClick={onMarkAsRead}>{`Mark as ${!notification.read ? 'read' : 'unread'}`}</DropdownItem>,
<DropdownItem key="manage-event" onClick={() => onNavigateTo('settings/notifications/configure-events')}>
<DropdownItem
key="manage-event"
onClick={() => onNavigateTo(`/settings/notifications/configure-events?bundle=${notification.bundle}&tab=configuration`)}
>
Manage this event
</DropdownItem>,
];
Expand Down

0 comments on commit 7ebd65c

Please sign in to comment.