FIX: hide admin controls on tags intersection page
This commit is contained in:
parent
3b792054f2
commit
37b68f10ae
|
@ -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 New Issue