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/package.json
CHANGED
|
@@ -631,6 +631,7 @@ 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);
|
|
634
635
|
|
|
635
636
|
// Initial state
|
|
636
637
|
const initialState: State = {
|
|
@@ -1149,6 +1150,7 @@ const LogReviewer: React.FC<Props> = (props) => {
|
|
|
1149
1150
|
checked={actionErrorFilterState.action[action]}
|
|
1150
1151
|
onChanged={(checked) => {
|
|
1151
1152
|
actionErrorFilterState.action[action] = checked;
|
|
1153
|
+
console.log(actionErrorFilterState);
|
|
1152
1154
|
dispatch({
|
|
1153
1155
|
type: ActionType.UpdateActionErrorFilterState,
|
|
1154
1156
|
actionErrorFilterState,
|