dce-reactkit 3.2.2-beta.36 → 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/esm/index.js
CHANGED
|
@@ -3258,6 +3258,7 @@ const LogReviewer = (props) => {
|
|
|
3258
3258
|
const description = genHumanReadableName(action);
|
|
3259
3259
|
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
3260
|
actionErrorFilterState.action[action] = checked;
|
|
3261
|
+
console.log(actionErrorFilterState, action, checked);
|
|
3261
3262
|
dispatch({
|
|
3262
3263
|
type: ActionType.UpdateActionErrorFilterState,
|
|
3263
3264
|
actionErrorFilterState,
|
|
@@ -3272,6 +3273,7 @@ const LogReviewer = (props) => {
|
|
|
3272
3273
|
const description = genHumanReadableName(target);
|
|
3273
3274
|
return (React.createElement(CheckboxButton, { id: `LogReviewer-target-${target}-checkbox`, text: description, ariaLabel: `include logs with target "${description}" in results`, checked: actionErrorFilterState.target[target], onChanged: (checked) => {
|
|
3274
3275
|
actionErrorFilterState.target[target] = checked;
|
|
3276
|
+
console.log(actionErrorFilterState, target, checked);
|
|
3275
3277
|
dispatch({
|
|
3276
3278
|
type: ActionType.UpdateActionErrorFilterState,
|
|
3277
3279
|
actionErrorFilterState,
|