diff --git a/lightrag_webui/src/components/graph/PropertiesView.tsx b/lightrag_webui/src/components/graph/PropertiesView.tsx index 4ba89be5..3a5ea990 100644 --- a/lightrag_webui/src/components/graph/PropertiesView.tsx +++ b/lightrag_webui/src/components/graph/PropertiesView.tsx @@ -159,33 +159,33 @@ const PropertyRow = ({ const NodePropertiesView = ({ node }: { node: NodeType }) => { const { t } = useTranslation() - + const handleExpandNode = () => { useGraphStore.getState().triggerNodeExpand(node.id) } - + const handlePruneNode = () => { useGraphStore.getState().triggerNodePrune(node.id) } - + return (