Merge branch 'master' into 6141-fix-z-layer-of-header-elements

This commit is contained in:
Hannes Heine 2023-05-12 15:10:19 +02:00 committed by GitHub
commit 7894a5f3f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,7 @@
params: { id: scope.row.id, slug: scope.row.slug },
}"
>
<ds-avatar online size="small" :name="scope.row.name"></ds-avatar>
<profile-avatar :profile="scope.row" size="small" />
</nuxt-link>
</template>
<template #name="scope">
@ -80,9 +80,13 @@
</template>
<script>
import { changeGroupMemberRoleMutation, removeUserFromGroupMutation } from '~/graphql/groups.js'
import ProfileAvatar from '~/components/_new/generic/ProfileAvatar/ProfileAvatar'
export default {
name: 'GroupMember',
components: {
ProfileAvatar,
},
props: {
groupId: {
type: String,