diff --git a/app/assets/javascripts/discourse/components/poster-name.js.es6 b/app/assets/javascripts/discourse/components/poster-name.js.es6 index 2c321b2e3..4c5344ce5 100644 --- a/app/assets/javascripts/discourse/components/poster-name.js.es6 +++ b/app/assets/javascripts/discourse/components/poster-name.js.es6 @@ -24,7 +24,7 @@ var PosterNameComponent = Em.Component.extend({ buffer.push(""); // Are we showing full names? - if (name && (name === username) && this.get('displayNameOnPosts')) { + if (name && (name !== username) && this.get('displayNameOnPosts')) { buffer.push("" + name + ""); } diff --git a/app/assets/stylesheets/common/base/topic-post.scss b/app/assets/stylesheets/common/base/topic-post.scss index 4498aa9d1..9397643fd 100644 --- a/app/assets/stylesheets/common/base/topic-post.scss +++ b/app/assets/stylesheets/common/base/topic-post.scss @@ -5,7 +5,7 @@ } span { font-size: 13px; - padding-right: 4px; + padding-right: 8px; a { color: scale-color($primary, $lightness: 30%); }