pds-dev-kit-web-test 2.5.125 → 2.5.127
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.
@@ -166,7 +166,9 @@ var CustomSection = (0, react_1.forwardRef)(function CustomSection(props, ref) {
|
|
166
166
|
}
|
167
167
|
// esc
|
168
168
|
if (shortcutKeyMode === 'MANUAL_BULK_BREAK') {
|
169
|
-
if (selectedBlockId &&
|
169
|
+
if (selectedBlockId &&
|
170
|
+
editingGroupBlock !== selectedBlockId &&
|
171
|
+
editingGroupBlock !== 'ROOT') {
|
170
172
|
setSelectedBlockId(null);
|
171
173
|
sectionActionHandler &&
|
172
174
|
sectionActionHandler({
|
@@ -310,8 +312,6 @@ var CustomSection = (0, react_1.forwardRef)(function CustomSection(props, ref) {
|
|
310
312
|
})();
|
311
313
|
if (shortcutKeyMode === 'BULK_SELECT') {
|
312
314
|
setBulkBlockIds(function (prev) {
|
313
|
-
console.log('prev', prev);
|
314
|
-
console.log('added', added);
|
315
315
|
var set = new Set(__spreadArray(__spreadArray([], prev, true), added, true));
|
316
316
|
return Array.from(set);
|
317
317
|
});
|