publ-echo-test 0.0.357 → 0.0.358
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -594,6 +594,9 @@ var ReactGridLayout = function (_a) {
|
|
|
594
594
|
var zIndex = editorMode === "EDIT" ? editorZIndex : z;
|
|
595
595
|
// Check if a layout item overlaps any of the activeRows (vertical overlap)
|
|
596
596
|
var isOverlappingActiveRows = function (item) {
|
|
597
|
+
if (selectedBlockId === item.i) {
|
|
598
|
+
return false;
|
|
599
|
+
}
|
|
597
600
|
if (!(activeDragItemOrSelectedItem === null || activeDragItemOrSelectedItem === void 0 ? void 0 : activeDragItemOrSelectedItem.heightFitContent)) {
|
|
598
601
|
return false;
|
|
599
602
|
}
|