From 6ff446675de731154b2c8baeac147831d01c7345 Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Wed, 24 Jun 2015 22:46:01 +0200 Subject: [PATCH] Include post number in mention notification --- .../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 24fca6e14..9bfdd1f31 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'] + content: [username(notification.sender()), (auc ? ' and '+auc+' others' : '')+' replied to your post (#'+post.number()+')'] }); } }