fix(settings): Add back create group icon

Signed-off-by: Christopher Ng <chrng8@gmail.com>
pull/47903/head
Christopher Ng 2024-09-10 14:11:51 +07:00
parent 87605dd358
commit 69faba6da7
1 changed files with 2 additions and 2 deletions

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