diff --git a/app/assets/javascripts/discourse/controllers/group.js.es6 b/app/assets/javascripts/discourse/controllers/group.js.es6 index 2686d92b470..9780b29cd90 100644 --- a/app/assets/javascripts/discourse/controllers/group.js.es6 +++ b/app/assets/javascripts/discourse/controllers/group.js.es6 @@ -65,12 +65,12 @@ export default Ember.Controller.extend({ }); }, - @computed('model.is_group_user', 'model.is_group_owner') - getTabs(isGroupUser, isGroupOwner) { + @computed('model.is_group_user', 'model.is_group_owner', 'model.automatic') + getTabs(isGroupUser, isGroupOwner, automatic) { return this.get('tabs').filter(t => { let isMember = false; - if (this.currentUser) { + if (this.currentUser && !automatic) { let admin = this.currentUser.admin; if (t.get('requiresGroupAdmin')) {