publ-echo-test 0.0.161 → 0.0.162

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.
@@ -118,10 +118,12 @@ export var findGroupBlocks = function (block, targetId) {
118
118
  var bulkInTarget = targetBlock.children.find(function (block) { return block.blockId === 'BULK'; });
119
119
  if (bulkInTarget && bulkInTarget.type === 'GROUP_BLOCK') {
120
120
  var groupInBulk = bulkInTarget.children.filter(function (child) { return child.type === 'GROUP_BLOCK'; });
121
- console.log('groupInBulk', groupInBulk);
122
- if (groupInBulk && groupInBulk.length > 0) {
121
+ if (targetBlock.blockId === 'ROOT') {
123
122
  return [targetBlock].concat(groupBlocks).concat(groupInBulk);
124
123
  }
124
+ if (groupInBulk && groupInBulk.length > 0) {
125
+ return groupBlocks.concat(groupInBulk);
126
+ }
125
127
  }
126
128
  if (targetBlock.blockId === 'ROOT') {
127
129
  return groupBlocks;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "publ-echo-test",
3
- "version": "0.0.161",
3
+ "version": "0.0.162",
4
4
  "private": false,
5
5
  "main": "dist/lib/index.js",
6
6
  "types": "dist/lib/index.d.js",