From 76a79b6adf1b16408febd54305b53785661a2266 Mon Sep 17 00:00:00 2001 From: Alan Guo Xiang Tan Date: Tue, 4 Oct 2022 10:48:33 +0800 Subject: [PATCH] UX: Change notifications nav icon in user page to bell (#18455) Now that we have chat, the comment icon is no longer ideal Internal Ref: /t/67780/55 --- app/assets/javascripts/discourse/app/components/user-nav.hbs | 2 +- app/assets/javascripts/discourse/app/templates/user.hbs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/javascripts/discourse/app/components/user-nav.hbs b/app/assets/javascripts/discourse/app/components/user-nav.hbs index 237b2a19ad1..6988e134fa2 100644 --- a/app/assets/javascripts/discourse/app/components/user-nav.hbs +++ b/app/assets/javascripts/discourse/app/components/user-nav.hbs @@ -52,7 +52,7 @@ {{#if @showNotificationsTab}}
  • - {{d-icon "comment" class="glyph"}}{{i18n "user.notifications"}} + {{d-icon "bell" class="glyph"}}{{i18n "user.notifications"}}
  • {{/if}} diff --git a/app/assets/javascripts/discourse/app/templates/user.hbs b/app/assets/javascripts/discourse/app/templates/user.hbs index c3b1e4e4192..fa522ce8b29 100644 --- a/app/assets/javascripts/discourse/app/templates/user.hbs +++ b/app/assets/javascripts/discourse/app/templates/user.hbs @@ -267,7 +267,7 @@ {{#if this.showNotificationsTab}}
  • - {{d-icon "comment" class="glyph"}}{{i18n 'user.notifications'}} + {{d-icon "bell" class="glyph"}}{{i18n 'user.notifications'}}
  • {{/if}}