Browse Source

fix(settings): Add back create group icon

Signed-off-by: Christopher Ng <chrng8@gmail.com>
pull/47881/head
Christopher Ng 1 year ago
parent
commit
e6b57e076d
  1. 4
      apps/settings/src/views/UserManagementNavigation.vue

4
apps/settings/src/views/UserManagementNavigation.vue

@ -92,7 +92,7 @@
<template v-if="isAdminOrDelegatedAdmin" #actions>
<NcActionText>
<template #icon>
<AccountGroup :size="20" />
<NcIconSvgWrapper :path="mdiAccountGroup" />
</template>
{{ t('settings', 'Create group') }}
</NcActionText>
@ -131,7 +131,7 @@
</template>
<script setup lang="ts">
import { mdiAccount, mdiAccountOff, mdiCog, mdiPlus, mdiShieldAccount, mdiHistory } from '@mdi/js'
import { mdiAccount, mdiAccountGroup, mdiAccountOff, mdiCog, mdiPlus, mdiShieldAccount, mdiHistory } from '@mdi/js'
import { showError } from '@nextcloud/dialogs'
import { translate as t } from '@nextcloud/l10n'
import { computed, ref } from 'vue'

Loading…
Cancel
Save