This commit is contained in:
Justin DiRose 2020-07-09 10:25:37 -05:00
parent 7f44dfc84a
commit 6c1e565381
No known key found for this signature in database
GPG Key ID: 4B811FB264021800
1 changed files with 4 additions and 1 deletions

View File

@ -75,7 +75,10 @@ export default Ember.Controller.extend({
@discourseComputed @discourseComputed
canFilterSolved() { canFilterSolved() {
return this.siteSettings.solved_enabled && this.siteSettings.knowledge_explorer_add_solved_filter; return (
this.siteSettings.solved_enabled &&
this.siteSettings.knowledge_explorer_add_solved_filter
);
}, },
@discourseComputed("filterTags") @discourseComputed("filterTags")