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

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,7 +2960,6 @@ const LogReviewer = (props) => {
2960
2960
  Object.values(LogBuiltInMetadata.Target).forEach((target) => {
2961
2961
  initActionErrorFilterState.target[target] = true;
2962
2962
  });
2963
- console.log(initActionErrorFilterState);
2964
2963
  // Initial state
2965
2964
  const initialState = {
2966
2965
  loading: true,
@@ -3267,7 +3266,7 @@ const LogReviewer = (props) => {
3267
3266
  const description = genHumanReadableName(action);
3268
3267
  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) => {
3269
3268
  actionErrorFilterState.action[action] = checked;
3270
- console.log(actionErrorFilterState);
3269
+ console.log(actionErrorFilterState, action, checked);
3271
3270
  dispatch({
3272
3271
  type: ActionType.UpdateActionErrorFilterState,
3273
3272
  actionErrorFilterState,
@@ -3282,6 +3281,7 @@ const LogReviewer = (props) => {
3282
3281
  const description = genHumanReadableName(target);
3283
3282
  return (React__default["default"].createElement(CheckboxButton, { id: `LogReviewer-target-${target}-checkbox`, text: description, ariaLabel: `include logs with target "${description}" in results`, checked: actionErrorFilterState.target[target], onChanged: (checked) => {
3284
3283
  actionErrorFilterState.target[target] = checked;
3284
+ console.log(actionErrorFilterState, target, checked);
3285
3285
  dispatch({
3286
3286
  type: ActionType.UpdateActionErrorFilterState,
3287
3287
  actionErrorFilterState,