@truedat/df 4.59.4 → 4.59.6
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 +4 -4
- package/src/components/DynamicForm.js +2 -2
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/df",
|
|
3
|
-
"version": "4.59.
|
|
3
|
+
"version": "4.59.6",
|
|
4
4
|
"description": "Truedat Web Data Quality Module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"jsnext:main": "src/index.js",
|
|
@@ -87,8 +87,8 @@
|
|
|
87
87
|
},
|
|
88
88
|
"dependencies": {
|
|
89
89
|
"@apollo/client": "^3.7.1",
|
|
90
|
-
"@truedat/auth": "4.59.
|
|
91
|
-
"@truedat/core": "4.59.
|
|
90
|
+
"@truedat/auth": "4.59.6",
|
|
91
|
+
"@truedat/core": "4.59.6",
|
|
92
92
|
"decode-uri-component": "^0.2.2",
|
|
93
93
|
"path-to-regexp": "^1.7.0",
|
|
94
94
|
"prop-types": "^15.8.1",
|
|
@@ -109,5 +109,5 @@
|
|
|
109
109
|
"react-dom": ">= 16.8.6 < 17",
|
|
110
110
|
"semantic-ui-react": ">= 2.0.3 < 2.2"
|
|
111
111
|
},
|
|
112
|
-
"gitHead": "
|
|
112
|
+
"gitHead": "b50a4a3640b53ebf1289b7d46f311c643c508c23"
|
|
113
113
|
}
|
|
@@ -21,7 +21,7 @@ export const DynamicForm = ({
|
|
|
21
21
|
const domainId = selectedDomain?.id;
|
|
22
22
|
useEffect(() => {
|
|
23
23
|
if (!_.isNil(domainId) && !_.isEmpty(template)) {
|
|
24
|
-
onChange(applyTemplate(content, domainId)
|
|
24
|
+
onChange(applyTemplate(content, domainId));
|
|
25
25
|
}
|
|
26
26
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
27
27
|
}, [applyTemplate, domainId, template]);
|
|
@@ -38,7 +38,7 @@ export const DynamicForm = ({
|
|
|
38
38
|
const handleChange = (e, { name, value }) => {
|
|
39
39
|
e && e.preventDefault();
|
|
40
40
|
const newContent = applyTemplate({ ...content, [name]: value }, domainId);
|
|
41
|
-
onChange(newContent
|
|
41
|
+
onChange(newContent);
|
|
42
42
|
};
|
|
43
43
|
|
|
44
44
|
const parsedGroups = parseGroups(formatMessage)(
|