|
@ -49,6 +49,18 @@ |
|
|
Your Contacts |
|
|
Your Contacts |
|
|
</h1> |
|
|
</h1> |
|
|
|
|
|
|
|
|
|
|
|
<div class="flex justify-between py-2"> |
|
|
|
|
|
<span /> |
|
|
|
|
|
<span> |
|
|
|
|
|
<router-link |
|
|
|
|
|
:to="{ name: 'help' }" |
|
|
|
|
|
class="text-xs uppercase bg-blue-500 text-white px-1.5 py-1 rounded-md ml-1" |
|
|
|
|
|
> |
|
|
|
|
|
Help |
|
|
|
|
|
</router-link> |
|
|
|
|
|
</span> |
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
<!-- New Contact --> |
|
|
<!-- New Contact --> |
|
|
<div class="mb-4 flex"> |
|
|
<div class="mb-4 flex"> |
|
|
<input |
|
|
<input |
|
@ -165,8 +177,11 @@ |
|
|
: (givenByMeUnconfirmed[contact.did] || 0) |
|
|
: (givenByMeUnconfirmed[contact.did] || 0) |
|
|
/* eslint-enable prettier/prettier */ |
|
|
/* eslint-enable prettier/prettier */ |
|
|
}} |
|
|
}} |
|
|
<span class="tooltiptext-left"> |
|
|
<span |
|
|
{{ givenByMeDescriptions[contact.did] || "Nothing" }} |
|
|
v-if="givenByMeDescriptions[contact.did]" |
|
|
|
|
|
class="tooltiptext-left" |
|
|
|
|
|
> |
|
|
|
|
|
{{ givenByMeDescriptions[contact.did] }} |
|
|
</span> |
|
|
</span> |
|
|
<button |
|
|
<button |
|
|
class="text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md mb-6" |
|
|
class="text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md mb-6" |
|
@ -187,8 +202,11 @@ |
|
|
: (givenToMeUnconfirmed[contact.did] || 0) |
|
|
: (givenToMeUnconfirmed[contact.did] || 0) |
|
|
/* eslint-enable prettier/prettier */ |
|
|
/* eslint-enable prettier/prettier */ |
|
|
}} |
|
|
}} |
|
|
<span class="tooltiptext-left"> |
|
|
<span |
|
|
{{ givenToMeDescriptions[contact.did] || "Nothing" }} |
|
|
v-if="givenToMeDescriptions[contact.did]" |
|
|
|
|
|
class="tooltiptext-left" |
|
|
|
|
|
> |
|
|
|
|
|
{{ givenToMeDescriptions[contact.did] }} |
|
|
</span> |
|
|
</span> |
|
|
<button |
|
|
<button |
|
|
class="text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md mb-6" |
|
|
class="text-md uppercase bg-slate-500 text-white px-1.5 py-2 rounded-md mb-6" |
|
|