diff --git a/src/pages/flowEditor/components/nodeContentOther.tsx b/src/pages/flowEditor/components/nodeContentOther.tsx index 1434ed9..a593acd 100644 --- a/src/pages/flowEditor/components/nodeContentOther.tsx +++ b/src/pages/flowEditor/components/nodeContentOther.tsx @@ -131,7 +131,7 @@ const renderRegularNodeHandles = (dataIns: any[], dataOuts: any[], apiIns: any[] id={apiOuts[index].name || apiOuts[index].id || `output-${index}`} style={{ ...handleStyles.mainSource, - top: `${35 + index * 20}px` + top: `${37 + index * 22}px` }} /> ))} @@ -143,7 +143,7 @@ const renderRegularNodeHandles = (dataIns: any[], dataOuts: any[], apiIns: any[] id={apiIns[index].name || apiIns[index].id || `input-${index}`} style={{ ...handleStyles.mainTarget, - top: `${35 + index * 20}px` + top: `${37 + index * 22}px` }} /> ))} @@ -157,7 +157,7 @@ const renderRegularNodeHandles = (dataIns: any[], dataOuts: any[], apiIns: any[] id={dataIns[index].name || dataIns[index].id || `input-${index}`} style={{ ...handleStyles.data, - top: `${70 + (apiIns.length + index) * 20}px` + top: `${65 + (apiIns.length + index) * 22}px` }} /> ))} @@ -171,7 +171,7 @@ const renderRegularNodeHandles = (dataIns: any[], dataOuts: any[], apiIns: any[] id={dataOuts[index].name || dataOuts[index].id || `output-${index}`} style={{ ...handleStyles.data, - top: `${70 + (apiIns.length + index) * 20}px` + top: `${65 + (apiIns.length + index) * 22}px` }} /> ))}