@integry/sdk 4.5.37 → 4.5.38

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.5.37",
3
+ "version": "4.5.38",
4
4
  "description": "Integry SDK",
5
5
  "main": "dist/umd/index.umd.js",
6
6
  "module": "dist/esm/index.csm.js",
@@ -1856,7 +1856,11 @@ class ActionForm extends Component<ActionFormPropsType, ActionFormStateType> {
1856
1856
  isMappable=${el.is_mappable}
1857
1857
  isEditable=${el.is_editable}
1858
1858
  allowTagsInText=${el.allow_tags_in_text}
1859
- fieldId=${el.activity_field?.id || el.id}
1859
+ fieldId=${
1860
+ el.activity_field?.id ||
1861
+ el.id ||
1862
+ el?.activity_field?.machine_name
1863
+ }
1860
1864
  refreshRootStepData=${
1861
1865
  this.refreshRootStepData
1862
1866
  }