mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-02 20:16:04 +01:00
fixed bug where an extra space was added to new replies
This commit is contained in:
@@ -164,7 +164,7 @@ define('forum/topic/postTools', ['share', 'navigator', 'components', 'translator
|
||||
tid: tid,
|
||||
pid: getData(button, 'data-pid'),
|
||||
topicName: topicName,
|
||||
text: username + ' ' || ''
|
||||
text: username ? username + ' ' : ''
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user