diff --git a/src/components/AvatarWrapper/AvatarWrapper.vue b/src/components/AvatarWrapper/AvatarWrapper.vue index 803b50aaa24..7fd1622ff29 100644 --- a/src/components/AvatarWrapper/AvatarWrapper.vue +++ b/src/components/AvatarWrapper/AvatarWrapper.vue @@ -188,6 +188,8 @@ export default { top: 0; width: var(--avatar-size); height: var(--avatar-size); + max-height: var(--avatar-size); + max-width: var(--avatar-size); line-height: var(--avatar-size); font-size: calc(var(--avatar-size) / 2); border-radius: 50%; diff --git a/src/components/ConversationSettings/BasicInfo.vue b/src/components/ConversationSettings/BasicInfo.vue index a938867ce21..9fa9fc9ec5a 100644 --- a/src/components/ConversationSettings/BasicInfo.vue +++ b/src/components/ConversationSettings/BasicInfo.vue @@ -30,6 +30,7 @@ :loading="isNameLoading" :placeholder="t('spreed', 'Enter a name for this conversation')" :edit-button-aria-label="t('spreed', 'Edit conversation name')" + :max-length="CONVERSATION.MAX_NAME_LENGTH" @submit-text="handleUpdateName" @update:editing="handleEditName" />