We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a06d83e commit e0176b1Copy full SHA for e0176b1
packages/ui/src/elements/TreeView/NestedSectionsTable/RowDropArea/index.tsx
@@ -87,7 +87,8 @@ export const RowDropArea = ({
87
<div
88
className={`${baseClass}__split-marker`}
89
style={{
90
- left: `calc(${hoverIndex * segmentWidth}px + ${xSplitOffset})`,
+ left:
91
+ targetItem === null ? 0 : `calc(${hoverIndex * segmentWidth}px + ${xSplitOffset})`,
92
}}
93
/>
94
)}
0 commit comments