@truedat/dq 8.4.6 → 8.4.7

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/dq",
3
- "version": "8.4.6",
3
+ "version": "8.4.7",
4
4
  "description": "Truedat Web Data Quality Module",
5
5
  "sideEffects": false,
6
6
  "module": "src/index.js",
@@ -56,7 +56,7 @@
56
56
  "@testing-library/jest-dom": "^6.6.3",
57
57
  "@testing-library/react": "^16.3.0",
58
58
  "@testing-library/user-event": "^14.6.1",
59
- "@truedat/test": "8.4.6",
59
+ "@truedat/test": "8.4.7",
60
60
  "identity-obj-proxy": "^3.0.0",
61
61
  "jest": "^29.7.0",
62
62
  "redux-saga-test-plan": "^4.0.6"
@@ -89,5 +89,5 @@
89
89
  "semantic-ui-react": "^3.0.0-beta.2",
90
90
  "swr": "^2.3.3"
91
91
  },
92
- "gitHead": "958ab0a57f628c19a7aee905a8f4ae624a3cdf59"
92
+ "gitHead": "71fcf487f24eb0b3e5a6962547e0e946c59033ce"
93
93
  }
@@ -120,13 +120,13 @@ RemediationPlan.propTypes = {
120
120
  };
121
121
 
122
122
  const mapStateToProps = ({
123
- templates,
123
+ allTemplates,
124
124
  remediation,
125
125
  remediationLoading,
126
126
  remediationActions,
127
127
  templatesLoading,
128
128
  }) => ({
129
- templates,
129
+ templates: allTemplates,
130
130
  remediation,
131
131
  isLoading: remediationLoading || templatesLoading,
132
132
  manageRemediations: _.has("create")(remediationActions),
@@ -89,12 +89,14 @@ RuleImplementationProperties.propTypes = {
89
89
  const mapStateToProps = ({
90
90
  ruleImplementation,
91
91
  ruleImplementationRaw,
92
- templates,
92
+ allTemplates,
93
93
  ruleImplementationLoading,
94
94
  }) => ({
95
95
  ruleImplementation,
96
96
  ruleImplementationRaw,
97
- templateImpl: _.find(_.propEq("name", ruleImplementation.df_name))(templates),
97
+ templateImpl: _.find(_.propEq("name", ruleImplementation.df_name))(
98
+ allTemplates
99
+ ),
98
100
  ruleImplementationLoaded:
99
101
  !ruleImplementationLoading && !_.isEmpty(ruleImplementation),
100
102
  });