Skip to content

Commit

Permalink
πŸ’„ Fix text overflow issue
Browse files Browse the repository at this point in the history
  • Loading branch information
AuroraHuang22 committed Nov 8, 2024
1 parent 2980888 commit 58e407d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/SameAsFieldList.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="flex flex-col w-full overflow-hidden">
<div class="flex flex-col w-full">
<div
v-for="(item, i) in sameAsList"
:key="item.id"
Expand Down Expand Up @@ -42,7 +42,7 @@
/>
</div>
<div v-else class="flex items-center justify-start">
<ContentFingerprintLink :item="item.url" />
<ContentFingerprintLink :item="item.url" class="!break-all" />
<Button
preset="plain"
@click.prevent="() => (item.shouldShowEditURL = true)"
Expand Down

0 comments on commit 58e407d

Please sign in to comment.