pds-dev-kit-web-test 2.5.237 → 2.5.239
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.
@@ -116,7 +116,6 @@ var CustomSection = (0, react_1.forwardRef)(function CustomSection(props, ref) {
|
|
116
116
|
var newblock = bulkBlockIds.length > 0
|
117
117
|
? (0, group_1.addBulkToTarget)(pedigreeState, editingGroupBlock, bulkBlockIds)
|
118
118
|
: pedigreeState;
|
119
|
-
console.log('bulkBlockIds', bulkBlockIds);
|
120
119
|
(0, react_1.useImperativeHandle)(ref, function () {
|
121
120
|
return {
|
122
121
|
selectCB: function (blockId) {
|
@@ -401,6 +400,9 @@ var CustomSection = (0, react_1.forwardRef)(function CustomSection(props, ref) {
|
|
401
400
|
if (selectedBlockId === editingGroupBlock) {
|
402
401
|
return [blockId];
|
403
402
|
}
|
403
|
+
if (selectedBlockId === 'BULK') {
|
404
|
+
return [blockId];
|
405
|
+
}
|
404
406
|
return selectedBlockId ? [selectedBlockId, blockId] : [blockId];
|
405
407
|
})();
|
406
408
|
if (shortcutKeyMode === 'BULK_SELECT') {
|