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/esm/index.js CHANGED
@@ -3123,7 +3123,7 @@ const LogReviewer = (props) => {
3123
3123
  ].forEach((partialContextMap) => {
3124
3124
  Object.keys(partialContextMap).forEach((context) => {
3125
3125
  // Add context
3126
- contextMap[context] = context;
3126
+ contextMap[context] = partialContextMap[context];
3127
3127
  // If context has children, add an "uncategorized" subcontext
3128
3128
  if (typeof contextMap[context] !== 'string') {
3129
3129
  contextMap[context][LogBuiltInMetadata.Context.Uncategorized] = (LogBuiltInMetadata.Context.Uncategorized);
@@ -3137,7 +3137,7 @@ const LogReviewer = (props) => {
3137
3137
  LogBuiltInMetadata.Target,
3138
3138
  ].forEach((partialTargetMap) => {
3139
3139
  Object.keys(partialTargetMap).forEach((target) => {
3140
- targetMap[target] = target;
3140
+ targetMap[target] = partialTargetMap[target];
3141
3141
  });
3142
3142
  });
3143
3143
  /* -------------- State ------------- */