dce-reactkit 3.2.2-beta.54 → 3.2.2-beta.55

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
@@ -3160,7 +3160,7 @@ const LogReviewer = (props) => {
3160
3160
  // Create initial context filter state
3161
3161
  const initContextFilterState = {};
3162
3162
  Object.keys(contextMap).forEach((context) => {
3163
- var _a, _b;
3163
+ var _a;
3164
3164
  const contextValue = ((_a = LogMetadata.Context) !== null && _a !== void 0 ? _a : {})[context];
3165
3165
  if (typeof contextValue === 'string') {
3166
3166
  // Case: no subcontexts, init as checked
@@ -3169,7 +3169,7 @@ const LogReviewer = (props) => {
3169
3169
  else {
3170
3170
  // Case: subcontexts exist
3171
3171
  initContextFilterState[context] = {};
3172
- Object.values(((_b = LogMetadata.Context) !== null && _b !== void 0 ? _b : {})[context]).forEach((subcontext) => {
3172
+ Object.values(contextMap[context]).forEach((subcontext) => {
3173
3173
  // Skip self ("_")
3174
3174
  if (subcontext === '_') {
3175
3175
  return;