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/esm/index.js
CHANGED
|
@@ -2952,7 +2952,6 @@ const LogReviewer = (props) => {
|
|
|
2952
2952
|
Object.values(LogBuiltInMetadata.Target).forEach((target) => {
|
|
2953
2953
|
initActionErrorFilterState.target[target] = true;
|
|
2954
2954
|
});
|
|
2955
|
-
console.log(initActionErrorFilterState);
|
|
2956
2955
|
// Initial state
|
|
2957
2956
|
const initialState = {
|
|
2958
2957
|
loading: true,
|
|
@@ -3259,7 +3258,7 @@ const LogReviewer = (props) => {
|
|
|
3259
3258
|
const description = genHumanReadableName(action);
|
|
3260
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) => {
|
|
3261
3260
|
actionErrorFilterState.action[action] = checked;
|
|
3262
|
-
console.log(actionErrorFilterState);
|
|
3261
|
+
console.log(actionErrorFilterState, action, checked);
|
|
3263
3262
|
dispatch({
|
|
3264
3263
|
type: ActionType.UpdateActionErrorFilterState,
|
|
3265
3264
|
actionErrorFilterState,
|
|
@@ -3274,6 +3273,7 @@ const LogReviewer = (props) => {
|
|
|
3274
3273
|
const description = genHumanReadableName(target);
|
|
3275
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) => {
|
|
3276
3275
|
actionErrorFilterState.target[target] = checked;
|
|
3276
|
+
console.log(actionErrorFilterState, target, checked);
|
|
3277
3277
|
dispatch({
|
|
3278
3278
|
type: ActionType.UpdateActionErrorFilterState,
|
|
3279
3279
|
actionErrorFilterState,
|