FIX: Display anonymous counts nicely on badges

This commit is contained in:
Robin Ward 2016-08-08 12:24:30 -04:00
parent 90d4ea7099
commit 3db020f95e

View File

@ -16,7 +16,7 @@ createWidget('hamburger-category', {
}
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;