fix: 修复系统消息长链接溢出
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user