@integry/sdk 4.6.26 → 4.6.27

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.26",
3
+ "version": "4.6.27",
4
4
  "description": "Integry SDK",
5
5
  "main": "dist/umd/index.umd.js",
6
6
  "module": "dist/esm/index.csm.js",
@@ -1104,7 +1104,7 @@ class ActionForm extends Component<ActionFormPropsType, ActionFormStateType> {
1104
1104
  fieldId: string,
1105
1105
  data: Record<string, { parentFields: string[] | null }>,
1106
1106
  ): boolean => {
1107
- const parentFields = data[fieldId]?.parentFields;
1107
+ const parentFields = data?.[fieldId]?.parentFields;
1108
1108
  return Array.isArray(parentFields) && parentFields.length > 0;
1109
1109
  };
1110
1110