Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix(settings): Add back create group icon
Signed-off-by: Christopher Ng <[email protected]>
  • Loading branch information
Pytal committed Sep 11, 2024
commit 69faba6da7da788910a581a7fb9fa425fb68f70a
4 changes: 2 additions & 2 deletions apps/settings/src/views/UserManagementNavigation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
<template v-if="isAdminOrDelegatedAdmin" #actions>
<NcActionText>
<template #icon>
<AccountGroup :size="20" />
<NcIconSvgWrapper :path="mdiAccountGroup" />
</template>
{{ t('settings', 'Create group') }}
</NcActionText>
Expand Down Expand Up @@ -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'
Expand Down