From 48ca774af9cf2905cb4877bb3ba21a23e50be641 Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Thu, 25 Jun 2015 10:11:46 +0930 Subject: [PATCH] Remove parentheses from around post number They draw too much attention, kinda making it look like an ID or an error code or something. --- .../mentions/js/src/components/post-mentioned-notification.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/mentions/js/src/components/post-mentioned-notification.js b/extensions/mentions/js/src/components/post-mentioned-notification.js index 9bfdd1f31..6e66a9a68 100644 --- a/extensions/mentions/js/src/components/post-mentioned-notification.js +++ b/extensions/mentions/js/src/components/post-mentioned-notification.js @@ -11,7 +11,7 @@ export default class PostMentionedNotification extends Notification { return super.view({ href: app.route.discussion(post.discussion(), auc ? post.number() : (content && content.replyNumber)), icon: 'reply', - content: [username(notification.sender()), (auc ? ' and '+auc+' others' : '')+' replied to your post (#'+post.number()+')'] + content: [username(notification.sender()), (auc ? ' and '+auc+' others' : '')+' replied to your post #'+post.number()] }); } }