@truedat/cx 4.49.8 → 4.50.1

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.50.1] 2022-08-22
4
+
5
+ ### Fixed
6
+
7
+ - [TD-5056] Configuration can't be saved
8
+
3
9
  ## [4.48.2] 2022-07-08
4
10
 
5
11
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/cx",
3
- "version": "4.49.8",
3
+ "version": "4.50.1",
4
4
  "description": "Truedat Web Connectors",
5
5
  "sideEffects": false,
6
6
  "jsnext:main": "src/index.js",
@@ -92,7 +92,7 @@
92
92
  },
93
93
  "dependencies": {
94
94
  "@apollo/client": "^3.6.4",
95
- "@truedat/core": "4.49.8",
95
+ "@truedat/core": "4.49.10",
96
96
  "lodash": "^4.17.21",
97
97
  "match-sorter": "^6.3.1",
98
98
  "path-to-regexp": "^1.7.0",
@@ -111,5 +111,5 @@
111
111
  "react-dom": ">= 16.8.6 < 17",
112
112
  "semantic-ui-react": ">= 0.88.2 < 2.1"
113
113
  },
114
- "gitHead": "74f5005d8059e15d346982d6b31c5b97e0dd8b79"
114
+ "gitHead": "8497bb1817f79367690377b368d2d47976c5b52a"
115
115
  }
@@ -29,7 +29,7 @@ const isValid = _.conforms({
29
29
 
30
30
  const ConfigurationForm = ({
31
31
  configuration,
32
- handleSubmit,
32
+ onSubmit,
33
33
  selectTemplate,
34
34
  template,
35
35
  templates,
@@ -93,7 +93,7 @@ const ConfigurationForm = ({
93
93
  const newConfiguration = _.pick(["external_id", "type"])(formState);
94
94
  const appliedContent = _.flow(_.prop("content"), applyTemplate)(formState);
95
95
 
96
- handleSubmit({
96
+ onSubmit({
97
97
  configuration: {
98
98
  ...newConfiguration,
99
99
  content: appliedContent,
@@ -166,7 +166,7 @@ const ConfigurationForm = ({
166
166
 
167
167
  ConfigurationForm.propTypes = {
168
168
  configuration: PropTypes.object,
169
- handleSubmit: PropTypes.func,
169
+ onSubmit: PropTypes.func,
170
170
  selectTemplate: PropTypes.func,
171
171
  template: PropTypes.object,
172
172
  templates: PropTypes.array,