fix(web): remove knowledge tags

This commit is contained in:
zhaoying
2026-04-17 11:04:47 +08:00
parent 2380cd55ef
commit 79b7da44e2
3 changed files with 2 additions and 8 deletions

View File

@@ -1597,7 +1597,6 @@ export const en = {
domain: 'Domain',
expertise: 'Expertise',
interests: 'Interests',
knowledge_tags: 'Knowledge Tags',
memoryWindow: "{{name}}'s Memory Overview",
memory_insight: 'Overall Overview',

View File

@@ -1558,7 +1558,6 @@ export const zh = {
domain: '领域',
expertise: '专业擅长',
interests: '兴趣爱好',
knowledge_tags: '知识标签',
memoryWindow: "{{name}} 的记忆之窗",
memory_insight: '总体概述',

View File

@@ -104,14 +104,10 @@ const EndUserProfile = forwardRef<EndUserProfileRef, EndUserProfileProps>(({ cla
<div className="rb:text-[#7B8085]">{t('userMemory.interests')}</div>
<div className="rb:mt-0.5">{data?.profile?.interests?.join(' | ') || '-'}</div>
</div>
<div>
<div className="rb:text-[#7B8085]">{t('userMemory.knowledge_tags')}</div>
<Flex wrap gap={4} className="rb:mt-0.5!">{data?.knowledge_tags?.map((tag: string) => <Tag>{tag}</Tag>) || '-'}</Flex>
</div>
<div className="rb:text-[#7B8085] rb:text-[12px] rb:leading-4.5">
<div className="rb:text-[#7B8085] rb:text-[12px] rb:leading-4.5">
{t('userMemory.updated_at')}: {data?.updated_at ? dayjs(data?.updated_at).format('YYYY/MM/DD HH:mm:ss') : ''}
</div>
</div>
</Flex>
}
<EndUserProfileModal