mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-02-17 04:01:29 -05:00
FIX: hide admin controls on tags intersection page
This commit is contained in:
parent
3b792054f2
commit
37b68f10ae
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ export default Ember.Controller.extend(BulkTopicSelection, {
|
|||
}.property(),
|
||||
|
||||
showAdminControls: function() {
|
||||
return this.get('additionalTags') && this.get('canAdminTag') && !this.get('category');
|
||||
return !this.get('additionalTags') && this.get('canAdminTag') && !this.get('category');
|
||||
}.property('additionalTags', 'canAdminTag', 'category'),
|
||||
|
||||
loadMoreTopics() {
|
||||
|
|
Loading…
Reference in a new issue