|
@ -180,6 +180,7 @@ |
|
|
data-testId="contactListItem" |
|
|
data-testId="contactListItem" |
|
|
> |
|
|
> |
|
|
<div class="grow overflow-hidden"> |
|
|
<div class="grow overflow-hidden"> |
|
|
|
|
|
<div class="flex items-center justify-between gap-3"> |
|
|
<div class="flex items-center gap-3"> |
|
|
<div class="flex items-center gap-3"> |
|
|
<input |
|
|
<input |
|
|
v-if="!showGiveNumbers" |
|
|
v-if="!showGiveNumbers" |
|
@ -197,12 +198,14 @@ |
|
|
" |
|
|
" |
|
|
/> |
|
|
/> |
|
|
|
|
|
|
|
|
|
|
|
<div class="flex-shrink-0 w-12 h-12 flex items-center justify-center"> |
|
|
<EntityIcon |
|
|
<EntityIcon |
|
|
:contact="contact" |
|
|
:contact="contact" |
|
|
:icon-size="48" |
|
|
:icon-size="48" |
|
|
class="inline-block align-text-bottom border border-slate-300 rounded cursor-pointer overflow-hidden" |
|
|
class="inline-block align-text-bottom border border-slate-300 rounded cursor-pointer overflow-hidden" |
|
|
@click="showLargeIdenticon = contact" |
|
|
@click="showLargeIdenticon = contact" |
|
|
/> |
|
|
/> |
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
<h2 class="text-base font-semibold w-1/3 truncate flex-shrink-0"> |
|
|
<h2 class="text-base font-semibold w-1/3 truncate flex-shrink-0"> |
|
|
{{ contactNameNonBreakingSpace(contact.name) }} |
|
|
{{ contactNameNonBreakingSpace(contact.name) }} |
|
@ -231,10 +234,8 @@ |
|
|
</div> |
|
|
</div> |
|
|
</span> |
|
|
</span> |
|
|
</div> |
|
|
</div> |
|
|
<div |
|
|
|
|
|
v-if="showGiveNumbers && contact.did != activeDid" |
|
|
<div v-if="showGiveNumbers && contact.did != activeDid" class="flex gap-2 items-center"> |
|
|
class="ml-auto flex gap-1.5 mt-2" |
|
|
|
|
|
> |
|
|
|
|
|
<button |
|
|
<button |
|
|
class="text-sm bg-gradient-to-b from-blue-400 to-blue-700 shadow-[inset_0_-1px_0_0_rgba(0,0,0,0.5)] text-white px-2 py-1.5 rounded-l-md" |
|
|
class="text-sm bg-gradient-to-b from-blue-400 to-blue-700 shadow-[inset_0_-1px_0_0_rgba(0,0,0,0.5)] text-white px-2 py-1.5 rounded-l-md" |
|
|
:title="givenToMeDescriptions[contact.did] || ''" |
|
|
:title="givenToMeDescriptions[contact.did] || ''" |
|
@ -293,6 +294,7 @@ |
|
|
</router-link> |
|
|
</router-link> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
</div> |
|
|
</li> |
|
|
</li> |
|
|
</ul> |
|
|
</ul> |
|
|
<p v-else>There are no contacts.</p> |
|
|
<p v-else>There are no contacts.</p> |
|
|