Remove parentheses from around post number

They draw too much attention, kinda making it look like an ID or an
error code or something.
This commit is contained in:
Toby Zerner 2015-06-25 10:11:46 +09:30
parent 6ff446675d
commit 48ca774af9

View File

@ -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()]
});
}
}