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.
2 parents f5ba6d5 + ebc8c1f commit 2eef9f9Copy full SHA for 2eef9f9
src/gridstack-engine.ts
@@ -345,7 +345,7 @@ export class GridStackEngine {
345
346
if (node.maxW) { node.w = Math.min(node.w, node.maxW); }
347
if (node.maxH) { node.h = Math.min(node.h, node.maxH); }
348
- if (node.minW) { node.w = Math.max(node.w, node.minW); }
+ if (node.minW && node.minW < this.column) { node.w = Math.max(node.w, node.minW); }
349
if (node.minH) { node.h = Math.max(node.h, node.minH); }
350
351
if (node.w > this.column) {
0 commit comments