From aeee7ed03dc7ba0ad75bfd4b3818a95e8e59adee Mon Sep 17 00:00:00 2001 From: Osama Sayegh Date: Sun, 11 Sep 2022 22:57:14 +0300 Subject: [PATCH] UX: Change `posted` notification icon to `discourse-bell-exclamation` (#18217) This PR changes the icon for `posted` notification types (these are the notifications that you receive when someone posts in a topic you're watching) from `reply` to `discourse-bell-exclamation`. We're doing this to visually distinguish between the `posted` notifications and `replied` notifications which are the notifications that you receive when someone replies to you directly. Internal topic: t72835. --- .../javascripts/discourse-common/addon/lib/icon-library.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/discourse-common/addon/lib/icon-library.js b/app/assets/javascripts/discourse-common/addon/lib/icon-library.js index f7434318f5e..a969a2a116d 100644 --- a/app/assets/javascripts/discourse-common/addon/lib/icon-library.js +++ b/app/assets/javascripts/discourse-common/addon/lib/icon-library.js @@ -27,7 +27,7 @@ const REPLACEMENTS = { "notification.group_mentioned": "users", "notification.quoted": "quote-right", "notification.replied": "reply", - "notification.posted": "reply", + "notification.posted": "discourse-bell-exclamation", "notification.edited": "pencil-alt", "notification.bookmark_reminder": "discourse-bookmark-clock", "notification.liked": "heart",