dce-reactkit 3.2.2-beta.56 → 3.2.2-beta.57
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
|
@@ -3131,7 +3131,7 @@ const LogReviewer = (props) => {
|
|
|
3131
3131
|
].forEach((partialContextMap) => {
|
|
3132
3132
|
Object.keys(partialContextMap).forEach((context) => {
|
|
3133
3133
|
// Add context
|
|
3134
|
-
contextMap[context] = context;
|
|
3134
|
+
contextMap[context] = partialContextMap[context];
|
|
3135
3135
|
// If context has children, add an "uncategorized" subcontext
|
|
3136
3136
|
if (typeof contextMap[context] !== 'string') {
|
|
3137
3137
|
contextMap[context][LogBuiltInMetadata.Context.Uncategorized] = (LogBuiltInMetadata.Context.Uncategorized);
|
|
@@ -3145,7 +3145,7 @@ const LogReviewer = (props) => {
|
|
|
3145
3145
|
LogBuiltInMetadata.Target,
|
|
3146
3146
|
].forEach((partialTargetMap) => {
|
|
3147
3147
|
Object.keys(partialTargetMap).forEach((target) => {
|
|
3148
|
-
targetMap[target] = target;
|
|
3148
|
+
targetMap[target] = partialTargetMap[target];
|
|
3149
3149
|
});
|
|
3150
3150
|
});
|
|
3151
3151
|
/* -------------- State ------------- */
|