Browse Source

fix(LeftSidebar): define size property for groups and teams

Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
pull/14260/head
Maksim Sukharev 9 months ago
committed by backportbot[bot]
parent
commit
d117ecd054
  1. 4
      src/components/LeftSidebar/LeftSidebar.vue

4
src/components/LeftSidebar/LeftSidebar.vue

@ -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') }}
@ -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') }}

Loading…
Cancel
Save