pds-dev-kit-web-test 2.7.615 → 2.7.616
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.
|
@@ -255,7 +255,6 @@ var CustomSection = (0, react_1.forwardRef)(function CustomSection(props, ref) {
|
|
|
255
255
|
return;
|
|
256
256
|
}
|
|
257
257
|
if (shortcutKeyMode === 'MANUAL_COLLISION_SELECT') {
|
|
258
|
-
console.log('selectedBlockId from PDS', selectedBlockId);
|
|
259
258
|
if (!selectedBlockId || selectedBlockId === 'BULK') {
|
|
260
259
|
return;
|
|
261
260
|
}
|
|
@@ -271,8 +270,7 @@ var CustomSection = (0, react_1.forwardRef)(function CustomSection(props, ref) {
|
|
|
271
270
|
var set = new Set(__spreadArray(__spreadArray([], prev, true), bulks_1, true));
|
|
272
271
|
return Array.from(set);
|
|
273
272
|
});
|
|
274
|
-
|
|
275
|
-
setSelectedBlockId('BULK');
|
|
273
|
+
setSelectedBlockId(null);
|
|
276
274
|
var newBulkIdsSet = new Set(__spreadArray(__spreadArray([], bulkBlockIds, true), bulks_1, true));
|
|
277
275
|
var newBulkIdsArray = Array.from(newBulkIdsSet);
|
|
278
276
|
var newBulkCBIds = newBulkIdsArray
|
|
@@ -423,7 +421,7 @@ var CustomSection = (0, react_1.forwardRef)(function CustomSection(props, ref) {
|
|
|
423
421
|
var set = new Set(__spreadArray(__spreadArray([], prev, true), added, true));
|
|
424
422
|
return Array.from(set);
|
|
425
423
|
});
|
|
426
|
-
setSelectedBlockId(
|
|
424
|
+
setSelectedBlockId('BULK');
|
|
427
425
|
var newBulkBlockIds = Array.from(new Set(__spreadArray(__spreadArray([], bulkBlockIds, true), added, true)));
|
|
428
426
|
var newBulkCBIds = newBulkBlockIds
|
|
429
427
|
.map(function (id) { return (0, group_1.formatBlockIdToCbId)(id); })
|