yangdx
commited on
Commit
·
30e7e32
1
Parent(s):
90cf704
Adjust position and spacing of settings display
Browse files
lightrag_webui/src/components/graph/SettingsDisplay.tsx
CHANGED
@@ -11,7 +11,7 @@ const SettingsDisplay = () => {
|
|
11 |
const graphMinDegree = useSettingsStore.use.graphMinDegree()
|
12 |
|
13 |
return (
|
14 |
-
<div className="absolute bottom-
|
15 |
<div>{t('graphPanel.sideBar.settings.depth')}: {graphQueryMaxDepth}</div>
|
16 |
<div>{t('graphPanel.sideBar.settings.degree')}: {graphMinDegree}</div>
|
17 |
</div>
|
|
|
11 |
const graphMinDegree = useSettingsStore.use.graphMinDegree()
|
12 |
|
13 |
return (
|
14 |
+
<div className="absolute bottom-4 left-[calc(1rem+2.5rem)] flex items-center gap-2 text-xs text-gray-400">
|
15 |
<div>{t('graphPanel.sideBar.settings.depth')}: {graphQueryMaxDepth}</div>
|
16 |
<div>{t('graphPanel.sideBar.settings.degree')}: {graphMinDegree}</div>
|
17 |
</div>
|