# Admin.groups.manage.membership.automatic not replaced

**URL:** https://meta.discourse.org/t/admin-groups-manage-membership-automatic-not-replaced/324215
**Category:** UX
**Tags:** groups
**Created:** [August 30, 2024, 5:21pm UTC](https://meta.discourse.org/t/admin-groups-manage-membership-automatic-not-replaced/324215 "2024-08-30T17:21:38Z")
**Posts on this page:** 1
**Showing post:** 6

<div class="post-metadata">

### Author: ![Moin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/moin/32/554653_2.png) [@Moin](https://meta.discourse.org/u/Moin)
#### Post date: [December 4, 2024, 11:49pm UTC](https://meta.discourse.org/t/admin-groups-manage-membership-automatic-not-replaced/324215/6 "2024-12-04T23:49:29Z")

</div>

I think it’s quite easy to fix.

At the moment, the tooltip is visible for everyone, but it uses a string for the admin section:

> <https://github.com/discourse/discourse/blob/f75c43713b03ba17c6e5bee84d9d0b50c842ee0a/app/assets/javascripts/discourse/app/templates/group.hbs#L44-L54>

 ![image](https://global.discourse-cdn.com/meta/original/4X/2/f/a/2fa3c7f96c8e01be9b4270bf4988dde85e62cbc6.png)  
I think the information is only relevant to those who can add group members. This can include admins, group owners, and, depending on the `moderators manage categories and groups` setting, moderators. I believe that automatic groups cannot have owners, so anyone allowed to manage the automatic group should also be able to access the admin section string, and it could be hidden for everyone else.

```diff
+ {{#if this.canManageGroup}}
          {{#if this.model.automatic}}
            <DTooltip class="admin-group-automatic-tooltip">
              <:trigger>
                {{d-icon "gear"}}
                {{i18n "admin.groups.manage.membership.automatic"}}
              </:trigger>
              <:content>
                {{i18n "admin.groups.manage.membership.automatic_tooltip"}}
              </:content>
            </DTooltip>
          {{/if}}
+ {{/if}}

```

---

_[View the full topic](https://meta.discourse.org/t/admin-groups-manage-membership-automatic-not-replaced/324215)._
