fix: update width constraint for comment badge
Changes width constraint from fixed `w-24` to `max-w-24` to prevent content overflow while maintaining maximum width limit for comment badges
This commit is contained in:
parent
465aa3292a
commit
f01224d04d
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ function selectLink(link) {
|
|||
</div>
|
||||
</div>
|
||||
<Badge v-if="link.item?.comment" variant="secondary">
|
||||
<div class="w-24 truncate">
|
||||
<div class="max-w-24 truncate">
|
||||
{{ link.item?.comment }}
|
||||
</div>
|
||||
</Badge>
|
||||
|
|
|
|||
Loading…
Reference in a new issue