mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-05-01 00:18:02 -04:00
BUGFIX: show usernames logic, logic failure
This commit is contained in:
parent
832a730e36
commit
8bc8052ab8
2 changed files with 2 additions and 2 deletions
app/assets
|
@ -24,7 +24,7 @@ var PosterNameComponent = Em.Component.extend({
|
||||||
buffer.push("</span>");
|
buffer.push("</span>");
|
||||||
|
|
||||||
// Are we showing full names?
|
// Are we showing full names?
|
||||||
if (name && (name === username) && this.get('displayNameOnPosts')) {
|
if (name && (name !== username) && this.get('displayNameOnPosts')) {
|
||||||
buffer.push("<span class='full-name'><a href='#'>" + name + "</a></span>");
|
buffer.push("<span class='full-name'><a href='#'>" + name + "</a></span>");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
}
|
}
|
||||||
span {
|
span {
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
padding-right: 4px;
|
padding-right: 8px;
|
||||||
a {
|
a {
|
||||||
color: scale-color($primary, $lightness: 30%);
|
color: scale-color($primary, $lightness: 30%);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue