From 019dff5248d1d5111e9fbf8791cbc6423ad7c4a7 Mon Sep 17 00:00:00 2001 From: yangdx Date: Tue, 21 Oct 2025 04:46:07 +0800 Subject: [PATCH] Update truncation message format in properties tooltip --- lightrag_webui/src/components/graph/PropertiesView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightrag_webui/src/components/graph/PropertiesView.tsx b/lightrag_webui/src/components/graph/PropertiesView.tsx index b46eb5b4..39b9a448 100644 --- a/lightrag_webui/src/components/graph/PropertiesView.tsx +++ b/lightrag_webui/src/components/graph/PropertiesView.tsx @@ -222,7 +222,7 @@ const PropertyRow = ({ // If this is source_id field and truncate info exists, append it to the tooltip if (name === 'source_id' && truncate) { - formattedTooltip += `\n(${truncate} truncated)` + formattedTooltip += `\n(Truncation-${truncate})` } // Use EditablePropertyRow for editable fields (description, entity_id and keywords)