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 0fef66b commit 42c616bCopy full SHA for 42c616b
client/packages/lowcoder/src/layout/gridItem.tsx
@@ -141,6 +141,9 @@ export function GridItem(props: GridItemProps) {
141
onDrag={onDrag}
142
onDragEnd={onDragEnd}
143
onMouseDown={(e) => {
144
+ // allow mouseDown event on kanban comp to make drag/drop work
145
+ if((props.compType as string).includes('lowcoder-comp-kanban')) return;
146
+
147
e.stopPropagation();
148
const event = new MouseEvent("mousedown");
149
document.dispatchEvent(event);
0 commit comments