fix(nc-gui): limit the number of blocks to render in rich text cell

This commit is contained in:
Ramesh Mane
2025-01-08 06:53:47 +00:00
parent e6b8fde7cb
commit 8d1027361d
4 changed files with 112 additions and 9 deletions

View File

@@ -183,6 +183,8 @@ if (appInfo.value.ee && !props.hideMention) {
}))
.find((user) => user.label.toLowerCase() === content.toLowerCase()) as any
if (!user) return ''
return `@(${user.id}|${user.email}|${user.display_name ?? ''})`
},
})