dce-reactkit 3.2.2-beta.24 → 3.2.2-beta.26
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
|
@@ -548,6 +548,7 @@ const LogReviewer: React.FC<Props> = (props) => {
|
|
|
548
548
|
LogMetadata.Target[target] = target;
|
|
549
549
|
}
|
|
550
550
|
});
|
|
551
|
+
console.log(LogMetadata);
|
|
551
552
|
|
|
552
553
|
/* -------------- State ------------- */
|
|
553
554
|
|
|
@@ -993,14 +994,14 @@ const LogReviewer: React.FC<Props> = (props) => {
|
|
|
993
994
|
const children: PickableItem[] = (
|
|
994
995
|
Object.keys(value)
|
|
995
996
|
.filter((subcontext) => {
|
|
996
|
-
return subcontext !== '_'
|
|
997
|
+
return subcontext !== '_';
|
|
997
998
|
})
|
|
998
999
|
.map((subcontext) => {
|
|
999
1000
|
return {
|
|
1000
1001
|
id: subcontext,
|
|
1001
1002
|
name: genHumanReadableName(subcontext),
|
|
1002
1003
|
isGroup: false,
|
|
1003
|
-
checked:
|
|
1004
|
+
checked: (contextFilterState[context] as any)[subcontext],
|
|
1004
1005
|
};
|
|
1005
1006
|
})
|
|
1006
1007
|
);
|