mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 16:53:43 +08:00
correct blankish username not treated correctly in post stream
This commit is contained in:
parent
614f4ca228
commit
0e2d918b3b
|
@ -27,7 +27,7 @@ export default createWidget('poster-name', {
|
|||
html(attrs) {
|
||||
const username = attrs.username;
|
||||
const name = attrs.name;
|
||||
const nameFirst = this.siteSettings.display_name_on_posts && !this.siteSettings.prioritize_username_in_ux && name && name.length > 0;
|
||||
const nameFirst = this.siteSettings.display_name_on_posts && !this.siteSettings.prioritize_username_in_ux && name && name.trim().length > 0;
|
||||
const classNames = nameFirst ? ['first','full-name'] : ['first','username'];
|
||||
|
||||
if (attrs.staff) { classNames.push('staff'); }
|
||||
|
|
Loading…
Reference in New Issue
Block a user