mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-17 19:12:37 -05:00
FIX: Display anonymous counts nicely on badges
This commit is contained in:
parent
90d4ea7099
commit
3db020f95e
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ createWidget('hamburger-category', {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!this.currentUser) {
|
if (!this.currentUser) {
|
||||||
results.push(h('b.topics-count', c.get('topic_count').toString()));
|
results.push(h('b.topics-count', number(c.get('topic_count'))));
|
||||||
}
|
}
|
||||||
|
|
||||||
return results;
|
return results;
|
||||||
|
|
Loading…
Reference in a new issue