dce-reactkit 3.2.2-beta.36 → 3.2.2-beta.37

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
@@ -2952,6 +2952,7 @@ const LogReviewer = (props) => {
2952
2952
  Object.values(LogBuiltInMetadata.Target).forEach((target) => {
2953
2953
  initActionErrorFilterState.target[target] = true;
2954
2954
  });
2955
+ console.log(initActionErrorFilterState);
2955
2956
  // Initial state
2956
2957
  const initialState = {
2957
2958
  loading: true,
@@ -3258,6 +3259,7 @@ const LogReviewer = (props) => {
3258
3259
  const description = genHumanReadableName(action);
3259
3260
  return (React.createElement(CheckboxButton, { id: `LogReviewer-action-${action}-checkbox`, text: description, ariaLabel: `include logs with action type "${description}" in results`, noMarginOnRight: i === Object.keys(LogAction$1).length - 1, checked: actionErrorFilterState.action[action], onChanged: (checked) => {
3260
3261
  actionErrorFilterState.action[action] = checked;
3262
+ console.log(actionErrorFilterState);
3261
3263
  dispatch({
3262
3264
  type: ActionType.UpdateActionErrorFilterState,
3263
3265
  actionErrorFilterState,