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/cjs/index.js CHANGED
@@ -2960,6 +2960,7 @@ const LogReviewer = (props) => {
2960
2960
  Object.values(LogBuiltInMetadata.Target).forEach((target) => {
2961
2961
  initActionErrorFilterState.target[target] = true;
2962
2962
  });
2963
+ console.log(initActionErrorFilterState);
2963
2964
  // Initial state
2964
2965
  const initialState = {
2965
2966
  loading: true,
@@ -3266,6 +3267,7 @@ const LogReviewer = (props) => {
3266
3267
  const description = genHumanReadableName(action);
3267
3268
  return (React__default["default"].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) => {
3268
3269
  actionErrorFilterState.action[action] = checked;
3270
+ console.log(actionErrorFilterState);
3269
3271
  dispatch({
3270
3272
  type: ActionType.UpdateActionErrorFilterState,
3271
3273
  actionErrorFilterState,