mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FIX: hide admin controls on tags intersection page
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user