FIX: hide admin controls on tags intersection page

This commit is contained in:
Neil Lalonde 2016-08-15 16:46:16 -04:00
parent 3b792054f2
commit 37b68f10ae
1 changed files with 1 additions and 1 deletions

View File

@ -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() {