dce-reactkit 3.2.2-beta.22 → 3.2.2-beta.23
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/package.json
CHANGED
|
@@ -1025,12 +1025,14 @@ const LogReviewer: React.FC<Props> = (props) => {
|
|
|
1025
1025
|
// Has subcontexts
|
|
1026
1026
|
pickableItem.children.forEach((subcontextItem) => {
|
|
1027
1027
|
if (!subcontextItem.isGroup) {
|
|
1028
|
+
console.log('Update child:', pickableItem.id, subcontextItem.id, subcontextItem.checked);
|
|
1029
|
+
console.log(contextFilterState);
|
|
1028
1030
|
(
|
|
1029
1031
|
contextFilterState[pickableItem.id] as { [k: string]: boolean }
|
|
1030
1032
|
)[subcontextItem.id] = (
|
|
1031
1033
|
subcontextItem.checked
|
|
1032
1034
|
);
|
|
1033
|
-
console.log(
|
|
1035
|
+
console.log(contextFilterState);
|
|
1034
1036
|
}
|
|
1035
1037
|
});
|
|
1036
1038
|
} else {
|