Fix contact icon in call participants list
This commit is contained in:
parent
8fd3059de8
commit
e624288b1b
2 changed files with 5 additions and 7 deletions
|
@ -4404,6 +4404,7 @@ button.module-image__border-overlay:focus {
|
|||
}
|
||||
|
||||
&__contact-icon {
|
||||
margin-inline-start: 0.3em;
|
||||
background-color: $color-gray-25;
|
||||
}
|
||||
|
||||
|
|
|
@ -134,13 +134,10 @@ export const CallingParticipantsList = React.memo(
|
|||
title={participant.title}
|
||||
/>
|
||||
{isInSystemContacts(participant) ? (
|
||||
<span>
|
||||
{' '}
|
||||
<InContactsIcon
|
||||
className="module-calling-participants-list__contact-icon"
|
||||
i18n={i18n}
|
||||
/>
|
||||
</span>
|
||||
<InContactsIcon
|
||||
className="module-calling-participants-list__contact-icon"
|
||||
i18n={i18n}
|
||||
/>
|
||||
) : null}
|
||||
</>
|
||||
)}
|
||||
|
|
Loading…
Reference in a new issue