fix: 修复系统消息长链接溢出

This commit is contained in:
Rogee
2026-08-08 19:54:06 +08:00
parent 518f9c5d6b
commit dcfd4b4b9d
2 changed files with 59 additions and 2 deletions
@@ -24,9 +24,13 @@ const readableTime = computed(() => {
<template>
<BaseBubble
v-tooltip.top="readableTime"
class="px-3 py-1 !rounded-xl flex min-w-0 items-center gap-2"
class="px-3 py-1 !rounded-xl flex min-w-0 max-w-full items-center gap-2"
data-bubble-name="activity"
>
<span v-dompurify-html="content" :title="content" />
<span
v-dompurify-html="content"
:title="content"
class="min-w-0 max-w-full [overflow-wrap:anywhere]"
/>
</BaseBubble>
</template>