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/package.json
CHANGED
|
@@ -1149,6 +1149,7 @@ const LogReviewer: React.FC<Props> = (props) => {
|
|
|
1149
1149
|
checked={actionErrorFilterState.action[action]}
|
|
1150
1150
|
onChanged={(checked) => {
|
|
1151
1151
|
actionErrorFilterState.action[action] = checked;
|
|
1152
|
+
console.log(actionErrorFilterState, action, checked);
|
|
1152
1153
|
dispatch({
|
|
1153
1154
|
type: ActionType.UpdateActionErrorFilterState,
|
|
1154
1155
|
actionErrorFilterState,
|
|
@@ -1180,6 +1181,7 @@ const LogReviewer: React.FC<Props> = (props) => {
|
|
|
1180
1181
|
checked={actionErrorFilterState.target[target]}
|
|
1181
1182
|
onChanged={(checked) => {
|
|
1182
1183
|
actionErrorFilterState.target[target] = checked;
|
|
1184
|
+
console.log(actionErrorFilterState, target, checked);
|
|
1183
1185
|
dispatch({
|
|
1184
1186
|
type: ActionType.UpdateActionErrorFilterState,
|
|
1185
1187
|
actionErrorFilterState,
|