Skip to content

Commit

Permalink
fix(LeftSidebar): define size property for groups and teams
Browse files Browse the repository at this point in the history
Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
  • Loading branch information
Antreesy committed Jan 28, 2025
1 parent dbf4587 commit 32b7d69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/LeftSidebar/LeftSidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@
:compact="isCompact"
@click="createAndJoinConversation(item)">
<template #icon>
<ConversationIcon :item="iconData(item)" />
<ConversationIcon :item="iconData(item)" :size="isCompact ? AVATAR.SIZE.COMPACT: AVATAR.SIZE.DEFAULT" />
</template>
<template v-if="!isCompact" #subname>
{{ t('spreed', 'New group conversation') }}
Expand All @@ -247,7 +247,7 @@
:compact="isCompact"
@click="createAndJoinConversation(item)">
<template #icon>
<ConversationIcon :item="iconData(item)" />
<ConversationIcon :item="iconData(item)" :size="isCompact ? AVATAR.SIZE.COMPACT: AVATAR.SIZE.DEFAULT" />
</template>
<template v-if="!isCompact" #subname>
{{ t('spreed', 'New group conversation') }}
Expand Down

0 comments on commit 32b7d69

Please sign in to comment.