From 20c976584b3fc1981b4638b046bebcd5d845863b Mon Sep 17 00:00:00 2001 From: yangdx Date: Fri, 14 Mar 2025 16:45:02 +0800 Subject: [PATCH] Fix linting --- .../src/components/graph/PropertiesView.tsx | 22 ++-- lightrag_webui/src/hooks/useLightragGraph.tsx | 116 +++++++++--------- lightrag_webui/src/stores/graph.ts | 82 ++++++------- 3 files changed, 110 insertions(+), 110 deletions(-) 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 (
- -