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/package.json
CHANGED
|
@@ -631,7 +631,6 @@ const LogReviewer: React.FC<Props> = (props) => {
|
|
|
631
631
|
Object.values(LogBuiltInMetadata.Target).forEach((target) => {
|
|
632
632
|
initActionErrorFilterState.target[target] = true;
|
|
633
633
|
});
|
|
634
|
-
console.log(initActionErrorFilterState);
|
|
635
634
|
|
|
636
635
|
// Initial state
|
|
637
636
|
const initialState: State = {
|
|
@@ -1150,7 +1149,7 @@ const LogReviewer: React.FC<Props> = (props) => {
|
|
|
1150
1149
|
checked={actionErrorFilterState.action[action]}
|
|
1151
1150
|
onChanged={(checked) => {
|
|
1152
1151
|
actionErrorFilterState.action[action] = checked;
|
|
1153
|
-
console.log(actionErrorFilterState);
|
|
1152
|
+
console.log(actionErrorFilterState, action, checked);
|
|
1154
1153
|
dispatch({
|
|
1155
1154
|
type: ActionType.UpdateActionErrorFilterState,
|
|
1156
1155
|
actionErrorFilterState,
|
|
@@ -1182,6 +1181,7 @@ const LogReviewer: React.FC<Props> = (props) => {
|
|
|
1182
1181
|
checked={actionErrorFilterState.target[target]}
|
|
1183
1182
|
onChanged={(checked) => {
|
|
1184
1183
|
actionErrorFilterState.target[target] = checked;
|
|
1184
|
+
console.log(actionErrorFilterState, target, checked);
|
|
1185
1185
|
dispatch({
|
|
1186
1186
|
type: ActionType.UpdateActionErrorFilterState,
|
|
1187
1187
|
actionErrorFilterState,
|