mirror of
https://github.com/flarum/framework.git
synced 2025-02-21 03:59:39 +08:00
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:
parent
6ff446675d
commit
48ca774af9
@ -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()]
|
||||
});
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user