mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
FIX: When uncategorized badge is not suppressed, the header formatting
was a bit messed up
This commit is contained in:
parent
0041081c6e
commit
d734bdabb6
1 changed files with 3 additions and 1 deletions
|
@ -12,7 +12,9 @@ export default DiscourseController.extend({
|
|||
|
||||
hasCategory: function() {
|
||||
var cat = this.get('topic.category');
|
||||
return cat && !cat.get('isUncategorizedCategory');
|
||||
return cat &&
|
||||
!cat.get('isUncategorizedCategory') ||
|
||||
!this.siteSettings.suppress_uncategorized_badge;
|
||||
}.property('topic.category'),
|
||||
|
||||
showPrivateMessageGlyph: function() {
|
||||
|
|
Loading…
Reference in a new issue