Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/AvatarWrapper/AvatarWrapper.vue')
-rw-r--r--src/components/AvatarWrapper/AvatarWrapper.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/AvatarWrapper/AvatarWrapper.vue b/src/components/AvatarWrapper/AvatarWrapper.vue
index 410614463..08b2db1c3 100644
--- a/src/components/AvatarWrapper/AvatarWrapper.vue
+++ b/src/components/AvatarWrapper/AvatarWrapper.vue
@@ -25,7 +25,7 @@
<div v-if="iconClass"
class="icon"
:class="[`avatar-${sizeToString}px`, iconClass]" />
- <Avatar v-else-if="!isGuest"
+ <NcAvatar v-else-if="!isGuest"
:user="id"
:display-name="name"
:menu-container="menuContainerWithFallback"
@@ -45,14 +45,14 @@
</template>
<script>
-import Avatar from '@nextcloud/vue/dist/Components/Avatar.js'
+import NcAvatar from '@nextcloud/vue/dist/Components/NcAvatar.js'
export default {
name: 'AvatarWrapper',
components: {
- Avatar,
+ NcAvatar,
},
props: {