fix: removed avatar from communication box
This commit is contained in:
parent
03221f7095
commit
7a31c91b31
@ -1,11 +1,15 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="flex gap-3 pt-2 pb-6 px-10">
|
<div class="flex gap-3 px-10 pb-6 pt-2">
|
||||||
<UserAvatar :user="getUser().name" size="xl" />
|
<UserAvatar
|
||||||
|
:user="getUser().name"
|
||||||
|
size="xl"
|
||||||
|
:class="showCommunicationBox ? 'mt-3' : ''"
|
||||||
|
/>
|
||||||
<Button
|
<Button
|
||||||
ref="sendEmailRef"
|
ref="sendEmailRef"
|
||||||
variant="outline"
|
variant="outline"
|
||||||
size="md"
|
size="md"
|
||||||
class="h-8.5 w-full inline-flex justify-between"
|
class="inline-flex h-8.5 w-full justify-between"
|
||||||
@click="showCommunicationBox = true"
|
@click="showCommunicationBox = true"
|
||||||
v-show="!showCommunicationBox"
|
v-show="!showCommunicationBox"
|
||||||
>
|
>
|
||||||
@ -22,12 +26,6 @@
|
|||||||
@keydown.ctrl.enter.capture.stop="submitComment"
|
@keydown.ctrl.enter.capture.stop="submitComment"
|
||||||
@keydown.meta.enter.capture.stop="submitComment"
|
@keydown.meta.enter.capture.stop="submitComment"
|
||||||
>
|
>
|
||||||
<div class="mb-4 flex items-center">
|
|
||||||
<UserAvatar :user="getUser().name" size="sm" />
|
|
||||||
<span class="ml-2 text-base font-medium text-gray-900">
|
|
||||||
{{ getUser().full_name }}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<EmailEditor
|
<EmailEditor
|
||||||
ref="newEmailEditor"
|
ref="newEmailEditor"
|
||||||
:value="newEmail"
|
:value="newEmail"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user