yangdx commited on
Commit
2fe3792
·
2 Parent(s): afd72b8 6d16de8

Merge branch 'main' into graph-storage-batch-query

Browse files
lightrag_webui/src/components/graph/EditablePropertyRow.tsx CHANGED
@@ -103,9 +103,9 @@ const EditablePropertyRow = ({
103
  <div className="flex items-center gap-1">
104
  <PropertyName name={name} />
105
  <EditIcon onClick={handleEditClick} />:
106
- <PropertyValue
107
- value={currentValue}
108
- onClick={onClick}
109
  tooltip={tooltip || (typeof currentValue === 'string' ? currentValue : JSON.stringify(currentValue, null, 2))}
110
  />
111
  <PropertyEditDialog
 
103
  <div className="flex items-center gap-1">
104
  <PropertyName name={name} />
105
  <EditIcon onClick={handleEditClick} />:
106
+ <PropertyValue
107
+ value={currentValue}
108
+ onClick={onClick}
109
  tooltip={tooltip || (typeof currentValue === 'string' ? currentValue : JSON.stringify(currentValue, null, 2))}
110
  />
111
  <PropertyEditDialog