@truedat/dq 4.45.6 → 4.45.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.45.7] 2022-06-07
4
+
5
+ ### Fixed
6
+
7
+ - [TD-4915] RuleImplementations table are not working in structure view
8
+
3
9
  ## [4.45.6] 2022-06-06
4
10
 
5
11
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/dq",
3
- "version": "4.45.6",
3
+ "version": "4.45.7",
4
4
  "description": "Truedat Web Data Quality Module",
5
5
  "sideEffects": false,
6
6
  "jsnext:main": "src/index.js",
@@ -34,7 +34,7 @@
34
34
  "@testing-library/jest-dom": "^5.16.4",
35
35
  "@testing-library/react": "^12.0.0",
36
36
  "@testing-library/user-event": "^13.2.1",
37
- "@truedat/test": "4.45.6",
37
+ "@truedat/test": "4.45.7",
38
38
  "babel-jest": "^28.1.0",
39
39
  "babel-plugin-dynamic-import-node": "^2.3.3",
40
40
  "babel-plugin-lodash": "^3.3.4",
@@ -88,8 +88,8 @@
88
88
  },
89
89
  "dependencies": {
90
90
  "@apollo/client": "^3.6.4",
91
- "@truedat/core": "4.45.6",
92
- "@truedat/df": "4.45.6",
91
+ "@truedat/core": "4.45.7",
92
+ "@truedat/df": "4.45.7",
93
93
  "axios": "^0.19.2",
94
94
  "graphql": "^15.5.3",
95
95
  "path-to-regexp": "^1.7.0",
@@ -110,5 +110,5 @@
110
110
  "react-dom": ">= 16.8.6 < 17",
111
111
  "semantic-ui-react": ">= 0.88.2 < 2.1"
112
112
  },
113
- "gitHead": "6624767ce3b6893d538087057b662d11f90eb72d"
113
+ "gitHead": "d3c6c144cc850972e0e602967e23259a1e176a2c"
114
114
  }
@@ -130,7 +130,7 @@ const mapStateToProps = (state, props) => ({
130
130
  columns: getRuleImplementationColumns(state),
131
131
  ruleImplementations:
132
132
  props.ruleImplementations ||
133
- state.structure?.implementations ||
133
+ state.structure?.implementations?.map(_.prop("implementation")) ||
134
134
  state.ruleImplementations,
135
135
  ruleImplementationsLoading: state.ruleImplementationsLoading,
136
136
  implementationsSort: _.path("ruleImplementationQuery.sort")(state),