pds-dev-kit-web-test 2.5.251 → 2.5.252
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.
@@ -684,8 +684,12 @@ var CustomSection = (0, react_1.forwardRef)(function CustomSection(props, ref) {
|
|
684
684
|
});
|
685
685
|
}
|
686
686
|
};
|
687
|
-
var onClickSection = function () {
|
688
|
-
if (!isEditMode
|
687
|
+
var onClickSection = function (e) {
|
688
|
+
if (!isEditMode) {
|
689
|
+
return;
|
690
|
+
}
|
691
|
+
if (editingGroupBlock !== 'ROOT') {
|
692
|
+
onClickGroup(e, editingGroupBlock);
|
689
693
|
return;
|
690
694
|
}
|
691
695
|
setBulkBlockIds([]);
|