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/cjs/index.js CHANGED
@@ -3144,7 +3144,10 @@ const LogReviewer = (props) => {
3144
3144
  if (pickableItem.isGroup) {
3145
3145
  // Has subcontexts
3146
3146
  pickableItem.children.forEach((subcontextItem) => {
3147
- contextFilterState[pickableItem.id][subcontextItem.id] = (subcontextItem.checked);
3147
+ if (!subcontextItem.isGroup) {
3148
+ contextFilterState[pickableItem.id][subcontextItem.id] = (subcontextItem.checked);
3149
+ console.log('Update child:', pickableItem.id, subcontextItem.id, subcontextItem.checked);
3150
+ }
3148
3151
  });
3149
3152
  }
3150
3153
  else {