We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7636422 commit 83407b4Copy full SHA for 83407b4
src/Notifications/utils.js
@@ -7,6 +7,7 @@ import {
7
PostOutline,
8
Report,
9
Verified,
10
+ Newspaper,
11
} from '@openedx/paragon/icons';
12
13
export const splitNotificationsByTime = (notificationList) => {
@@ -42,6 +43,7 @@ export const getIconByType = (type) => {
42
43
content_reported: { icon: Report, class: 'text-danger' },
44
response_endorsed: { icon: Verified, class: 'text-primary-500' },
45
response_endorsed_on_thread: { icon: Verified, class: 'text-primary-500' },
46
+ course_update: { icon: Newspaper, class: 'text-primary-500' },
47
};
48
return iconMap[type] || { icon: PostOutline, class: 'text-primary-500' };
49
0 commit comments