|
|
@ -4,6 +4,11 @@ |
|
|
|
<h1 id="ViewHeading" class="text-4xl text-center font-light pt-4 mb-8"> |
|
|
|
Given with {{ contact?.name }} |
|
|
|
</h1> |
|
|
|
<div class="flex justify-around"> |
|
|
|
<span /> |
|
|
|
<span class="justify-around">(Only 50 most recent)</span> |
|
|
|
<span /> |
|
|
|
</div> |
|
|
|
|
|
|
|
<!-- Results List --> |
|
|
|
<div> |
|
|
@ -163,7 +168,7 @@ export default class ContactsView extends Vue { |
|
|
|
encodeURIComponent(identity.did) + |
|
|
|
"&recipientDid=" + |
|
|
|
encodeURIComponent(contact.did); |
|
|
|
const headers = this.getHeaders(identity); |
|
|
|
const headers = await this.getHeaders(identity); |
|
|
|
const resp = await this.axios.get(url, { headers }); |
|
|
|
if (resp.status === 200) { |
|
|
|
result = resp.data.data; |
|
|
|