From 3438f9e89691ef499c9951868dd1d7b04dac7c77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20MANSUY?= Date: Thu, 4 Dec 2025 19:18:39 +0800 Subject: [PATCH] cherry-pick 25f829ef --- lightrag_webui/src/components/graph/PropertiesView.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lightrag_webui/src/components/graph/PropertiesView.tsx b/lightrag_webui/src/components/graph/PropertiesView.tsx index 97411f29..463b49da 100644 --- a/lightrag_webui/src/components/graph/PropertiesView.tsx +++ b/lightrag_webui/src/components/graph/PropertiesView.tsx @@ -225,8 +225,8 @@ const PropertyRow = ({ formattedTooltip += `\n(Truncated: ${truncate})` } - // Use EditablePropertyRow for editable fields (description, entity_id and keywords) - if (isEditable && (name === 'description' || name === 'entity_id' || name === 'keywords')) { + // Use EditablePropertyRow for editable fields (description, entity_id and entity_type) + if (isEditable && (name === 'description' || name === 'entity_id' || name === 'entity_type' || name === 'keywords')) { return ( { nodeId={String(node.id)} entityId={node.properties['entity_id']} entityType="node" - isEditable={name === 'description' || name === 'entity_id'} + isEditable={name === 'description' || name === 'entity_id' || name === 'entity_type'} truncate={node.properties['truncate']} /> )