@truedat/dq 4.52.2 → 4.52.3
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/CHANGELOG.md +6 -0
- package/package.json +2 -2
- package/src/reducers/index.js +0 -2
- package/src/reducers/ruleActions.js +0 -19
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/dq",
|
|
3
|
-
"version": "4.52.
|
|
3
|
+
"version": "4.52.3",
|
|
4
4
|
"description": "Truedat Web Data Quality Module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"jsnext:main": "src/index.js",
|
|
@@ -114,5 +114,5 @@
|
|
|
114
114
|
"react-dom": ">= 16.8.6 < 17",
|
|
115
115
|
"semantic-ui-react": ">= 0.88.2 < 2.1"
|
|
116
116
|
},
|
|
117
|
-
"gitHead": "
|
|
117
|
+
"gitHead": "64a180a3031aa1e24fdfe1db18b5773e43e20486"
|
|
118
118
|
}
|
package/src/reducers/index.js
CHANGED
|
@@ -13,7 +13,6 @@ import { remediationActions } from "./remediationActions";
|
|
|
13
13
|
import { remediationLoading } from "./remediationLoading";
|
|
14
14
|
import { resultsUploading } from "./resultsUploading";
|
|
15
15
|
import { rule } from "./rule";
|
|
16
|
-
import { ruleActions } from "./ruleActions";
|
|
17
16
|
import { ruleActiveFilters } from "./ruleActiveFilters";
|
|
18
17
|
import { ruleCount } from "./ruleCount";
|
|
19
18
|
import { ruleCreating } from "./ruleCreating";
|
|
@@ -65,7 +64,6 @@ export {
|
|
|
65
64
|
remediationLoading,
|
|
66
65
|
resultsUploading,
|
|
67
66
|
rule,
|
|
68
|
-
ruleActions,
|
|
69
67
|
ruleActiveFilters,
|
|
70
68
|
ruleCount,
|
|
71
69
|
ruleCreating,
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import _ from "lodash/fp";
|
|
2
|
-
import { clearRule, fetchRule } from "../routines";
|
|
3
|
-
|
|
4
|
-
const initialState = {};
|
|
5
|
-
|
|
6
|
-
export const ruleActions = (state = initialState, { type, payload }) => {
|
|
7
|
-
switch (type) {
|
|
8
|
-
case clearRule.TRIGGER:
|
|
9
|
-
return initialState;
|
|
10
|
-
case fetchRule.TRIGGER:
|
|
11
|
-
return initialState;
|
|
12
|
-
case fetchRule.SUCCESS:
|
|
13
|
-
return _.propOr({}, "_actions")(payload);
|
|
14
|
-
default:
|
|
15
|
-
return state;
|
|
16
|
-
}
|
|
17
|
-
};
|
|
18
|
-
|
|
19
|
-
export default ruleActions;
|