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/cjs/index.js CHANGED
@@ -3168,7 +3168,7 @@ const LogReviewer = (props) => {
3168
3168
  // Create initial context filter state
3169
3169
  const initContextFilterState = {};
3170
3170
  Object.keys(contextMap).forEach((context) => {
3171
- var _a, _b;
3171
+ var _a;
3172
3172
  const contextValue = ((_a = LogMetadata.Context) !== null && _a !== void 0 ? _a : {})[context];
3173
3173
  if (typeof contextValue === 'string') {
3174
3174
  // Case: no subcontexts, init as checked
@@ -3177,7 +3177,7 @@ const LogReviewer = (props) => {
3177
3177
  else {
3178
3178
  // Case: subcontexts exist
3179
3179
  initContextFilterState[context] = {};
3180
- Object.values(((_b = LogMetadata.Context) !== null && _b !== void 0 ? _b : {})[context]).forEach((subcontext) => {
3180
+ Object.values(contextMap[context]).forEach((subcontext) => {
3181
3181
  // Skip self ("_")
3182
3182
  if (subcontext === '_') {
3183
3183
  return;