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 0768878 commit 639a78fCopy full SHA for 639a78f
packages/react/src/widgets/DragSourceWidget/index.tsx
@@ -73,7 +73,10 @@ export const DragSourceWidget: React.FC<IDragSourceWidgetProps> = observer(
73
<div className={prefix + '-content'}>
74
{sources.map(isFn(props.children) ? props.children : renderNode)}
75
{remainItems ? (
76
- <div className={prefix + '-item-remain'}></div>
+ <div
77
+ className={prefix + '-item-remain'}
78
+ style={{ gridColumnStart: `span ${3 - remainItems}` }}
79
+ ></div>
80
) : null}
81
</div>
82
0 commit comments