@truedat/cx 7.13.7 → 7.13.8

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/cx",
3
- "version": "7.13.7",
3
+ "version": "7.13.8",
4
4
  "description": "Truedat Web Connectors",
5
5
  "sideEffects": false,
6
6
  "module": "src/index.js",
@@ -48,7 +48,7 @@
48
48
  "@testing-library/jest-dom": "^6.6.3",
49
49
  "@testing-library/react": "^16.3.0",
50
50
  "@testing-library/user-event": "^14.6.1",
51
- "@truedat/test": "7.13.7",
51
+ "@truedat/test": "7.13.8",
52
52
  "identity-obj-proxy": "^3.0.0",
53
53
  "jest": "^29.7.0",
54
54
  "redux-saga-test-plan": "^4.0.6"
@@ -81,5 +81,5 @@
81
81
  "semantic-ui-react": "^3.0.0-beta.2",
82
82
  "swr": "^2.3.3"
83
83
  },
84
- "gitHead": "7437522470d6e6eb11f9f5b472b822b23949cb74"
84
+ "gitHead": "14e97850f4591da2e3b26dfd5192da159812a39a"
85
85
  }
@@ -23,6 +23,7 @@ export const SourceSelector = ({
23
23
  error: queryError,
24
24
  data,
25
25
  } = useQuery(SOURCE_OPTIONS_QUERY, { variables });
26
+
26
27
  if (queryError) return null;
27
28
  const options = loading
28
29
  ? []
@@ -35,6 +36,7 @@ export const SourceSelector = ({
35
36
  text: externalId,
36
37
  }))
37
38
  )(data);
39
+
38
40
  return (
39
41
  <Form.Dropdown
40
42
  disabled={disabled}
@@ -50,7 +52,7 @@ export const SourceSelector = ({
50
52
  required={required}
51
53
  search
52
54
  selection
53
- value={value}
55
+ value={_.toString(value)}
54
56
  />
55
57
  );
56
58
  };