dce-reactkit 3.2.2-beta.21 → 3.2.2-beta.22

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.
package/dist/esm/index.js CHANGED
@@ -3136,7 +3136,10 @@ const LogReviewer = (props) => {
3136
3136
  if (pickableItem.isGroup) {
3137
3137
  // Has subcontexts
3138
3138
  pickableItem.children.forEach((subcontextItem) => {
3139
- contextFilterState[pickableItem.id][subcontextItem.id] = (subcontextItem.checked);
3139
+ if (!subcontextItem.isGroup) {
3140
+ contextFilterState[pickableItem.id][subcontextItem.id] = (subcontextItem.checked);
3141
+ console.log('Update child:', pickableItem.id, subcontextItem.id, subcontextItem.checked);
3142
+ }
3140
3143
  });
3141
3144
  }
3142
3145
  else {