diff --git a/web/src/views/UserMemoryDetail/components/RelationshipNetwork.tsx b/web/src/views/UserMemoryDetail/components/RelationshipNetwork.tsx
index 66e37a45..01d4da4f 100644
--- a/web/src/views/UserMemoryDetail/components/RelationshipNetwork.tsx
+++ b/web/src/views/UserMemoryDetail/components/RelationshipNetwork.tsx
@@ -2,7 +2,7 @@
* @Author: ZhaoYing
* @Date: 2026-02-03 18:32:00
* @Last Modified by: ZhaoYing
- * @Last Modified time: 2026-03-13 14:51:17
+ * @Last Modified time: 2026-03-19 20:23:42
*/
/**
* Relationship Network Component
@@ -287,22 +287,26 @@ const RelationshipNetwork:FC = () => {
: (selectedNode as RawCommunityNode).properties.community_id
?
- {(selectedNode as RawCommunityNode).properties.name}
-
-
{t('userMemory.summary')}
-
- {(selectedNode as RawCommunityNode).properties.summary}
+ {(selectedNode as RawCommunityNode).properties.name || selectedNode.id}
+ {(selectedNode as RawCommunityNode).properties.summary && <>
+
{t('userMemory.summary')}
+
+ {(selectedNode as RawCommunityNode).properties.summary}
+
+ >}
{t('userMemory.member_count')}
{(selectedNode as RawCommunityNode).properties.member_count}{t('userMemory.member_count_desc')}
-
-
{t('userMemory.core_entities')}
-
- {(selectedNode as RawCommunityNode).properties.core_entities.map((entity, index) => - {entity}
)}
-
+ {(selectedNode as RawCommunityNode).properties.core_entities && <>
+
+
{t('userMemory.core_entities')}
+
+ {(selectedNode as RawCommunityNode).properties.core_entities?.map((entity, index) => - {entity}
)}
+
+ >}
: <>
{(selectedNode as Node).name && (