|
@ -28,7 +28,7 @@ |
|
|
<font-awesome icon="question" class="block text-center w-[1em]" /> |
|
|
<font-awesome icon="question" class="block text-center w-[1em]" /> |
|
|
</router-link> |
|
|
</router-link> |
|
|
</div> |
|
|
</div> |
|
|
<h2 class="text-center text-lg font-normal"> |
|
|
<h2 class="text-center text-lg font-normal overflow-hidden text-ellipsis"> |
|
|
{{ name }} |
|
|
{{ name }} |
|
|
<button |
|
|
<button |
|
|
v-if="activeDid === issuer || activeDid === agentDid" |
|
|
v-if="activeDid === issuer || activeDid === agentDid" |
|
@ -157,7 +157,7 @@ |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="text-sm text-slate-500"> |
|
|
<div class="text-sm text-slate-500"> |
|
|
<div v-if="!expanded"> |
|
|
<div v-if="!expanded" class="overflow-hidden text-ellipsis"> |
|
|
<vue-markdown |
|
|
<vue-markdown |
|
|
:source="truncatedDesc" |
|
|
:source="truncatedDesc" |
|
|
class="mb-4 markdown-content" |
|
|
class="mb-4 markdown-content" |
|
@ -169,7 +169,7 @@ |
|
|
>... Read More</a |
|
|
>... Read More</a |
|
|
> |
|
|
> |
|
|
</div> |
|
|
</div> |
|
|
<div v-else> |
|
|
<div v-else class="overflow-hidden text-ellipsis"> |
|
|
<vue-markdown :source="description" class="mb-4 markdown-content" /> |
|
|
<vue-markdown :source="description" class="mb-4 markdown-content" /> |
|
|
<a |
|
|
<a |
|
|
v-if="description.length >= truncateLength" |
|
|
v-if="description.length >= truncateLength" |
|
@ -308,7 +308,10 @@ |
|
|
/>{{ offer.amount }} |
|
|
/>{{ offer.amount }} |
|
|
</span> |
|
|
</span> |
|
|
</div> |
|
|
</div> |
|
|
<div v-if="offer.objectDescription" class="text-slate-500"> |
|
|
<div |
|
|
|
|
|
v-if="offer.objectDescription" |
|
|
|
|
|
class="text-slate-500 overflow-hidden text-ellipsis" |
|
|
|
|
|
> |
|
|
<font-awesome icon="comment" class="fa-fw text-slate-400" /> |
|
|
<font-awesome icon="comment" class="fa-fw text-slate-400" /> |
|
|
{{ offer.objectDescription }} |
|
|
{{ offer.objectDescription }} |
|
|
</div> |
|
|
</div> |
|
@ -450,7 +453,10 @@ |
|
|
<font-awesome icon="calendar" class="fa-fw text-slate-400" /> |
|
|
<font-awesome icon="calendar" class="fa-fw text-slate-400" /> |
|
|
{{ give.issuedAt?.substring(0, 10) }} |
|
|
{{ give.issuedAt?.substring(0, 10) }} |
|
|
</div> |
|
|
</div> |
|
|
<div v-if="give.description" class="text-slate-500"> |
|
|
<div |
|
|
|
|
|
v-if="give.description" |
|
|
|
|
|
class="text-slate-500 overflow-hidden text-ellipsis" |
|
|
|
|
|
> |
|
|
<font-awesome icon="comment" class="fa-fw text-slate-400" /> |
|
|
<font-awesome icon="comment" class="fa-fw text-slate-400" /> |
|
|
{{ give.description }} |
|
|
{{ give.description }} |
|
|
</div> |
|
|
</div> |
|
@ -557,7 +563,10 @@ |
|
|
<font-awesome icon="calendar" class="fa-fw text-slate-400" /> |
|
|
<font-awesome icon="calendar" class="fa-fw text-slate-400" /> |
|
|
{{ give.issuedAt?.substring(0, 10) }} |
|
|
{{ give.issuedAt?.substring(0, 10) }} |
|
|
</div> |
|
|
</div> |
|
|
<div v-if="give.description" class="text-slate-500"> |
|
|
<div |
|
|
|
|
|
v-if="give.description" |
|
|
|
|
|
class="text-slate-500 overflow-hidden text-ellipsis" |
|
|
|
|
|
> |
|
|
<font-awesome icon="comment" class="fa-fw text-slate-400" /> |
|
|
<font-awesome icon="comment" class="fa-fw text-slate-400" /> |
|
|
{{ give.description }} |
|
|
{{ give.description }} |
|
|
</div> |
|
|
</div> |
|
|