Browse Source

fix(feed): long words or urls displayed in feed break the container layout

pull/124/head
Jason Buchanan 1 week ago
parent
commit
be1146c7df
No known key found for this signature in database GPG Key ID: 1A12361012426318
  1. 4
      src/views/HomeView.vue

4
src/views/HomeView.vue

@ -281,7 +281,7 @@
/> />
</span> </span>
</span> </span>
<span class="col-span-10 justify-self-stretch"> <span class="col-span-10 justify-self-stretch overflow-hidden">
<!-- show giver and/or receiver profiles... which seemed like a good idea but actually adds clutter <!-- show giver and/or receiver profiles... which seemed like a good idea but actually adds clutter
<span <span
v-if=" v-if="
@ -315,7 +315,7 @@
/> />
</span> </span>
--> -->
<span class="pl-2"> <span class="pl-2 block break-words">
{{ giveDescription(record) }} {{ giveDescription(record) }}
</span> </span>
<a @click="onClickLoadClaim(record.jwtId)"> <a @click="onClickLoadClaim(record.jwtId)">

Loading…
Cancel
Save