@integry/sdk 4.6.72 → 4.6.73

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": "@integry/sdk",
3
- "version": "4.6.72",
3
+ "version": "4.6.73",
4
4
  "description": "Integry SDK",
5
5
  "main": "dist/umd/index.umd.js",
6
6
  "module": "dist/esm/index.csm.js",
@@ -622,9 +622,8 @@ class FunctionForm extends Component<
622
622
  ? fieldDetails.meta.ui.ui_field.value_key_path || ''
623
623
  : undefined,
624
624
  isMultiSelect:
625
- fieldDetails.meta.ui.ui_field?.type === 'DYNAMIC_DROPDOWN'
626
- ? fieldDetails.meta.ui.ui_field.is_multiselect || false
627
- : false,
625
+ fieldDetails?.meta?.ui?.ui_field?.is_multiselect || false,
626
+
628
627
  idKeyPath:
629
628
  fieldDetails.meta.ui.ui_field?.type === 'CUSTOM_FIELDS'
630
629
  ? fieldDetails.meta.ui.ui_field.id_key_path || ''