mirror of
https://github.com/nextcloud/server.git
synced 2026-06-17 12:42:50 -04:00
fix(settings): Add back create group icon
Signed-off-by: Christopher Ng <chrng8@gmail.com>
This commit is contained in:
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'
|
||||
|
|
|
|||
Loading…
Reference in a new issue