Skip to content

Commit c4e3ac1

Browse files
committed
fix: catch all rule spacing
1 parent 4e0e843 commit c4e3ac1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/components/SortableArea.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ function ItemWrapper({
4343

4444
return (
4545
<div style={style} className="flex items-center w-full">
46-
{!disabledDrag && (
46+
{disabledDrag ? (
47+
<div className="size-8" />
48+
) : (
4749
<div ref={setNodeRef} {...attributes} {...listeners} className="size-8">
4850
<Drag />
4951
</div>

0 commit comments

Comments
 (0)