yangdx
commited on
Commit
·
6d16de8
1
Parent(s):
d35b735
Fix linting
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
|