@trackunit/iris-app-runtime-core 0.3.137 → 0.3.138

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/index.cjs.js CHANGED
@@ -167,7 +167,7 @@ const getCustomFieldValueToSaveFromRawValue = (customFieldDefinition, newValue)
167
167
  }
168
168
  }
169
169
  return {
170
- stringArrayValue: stringArrayValue,
170
+ stringArrayValue: stringArrayValue.length ? stringArrayValue : null,
171
171
  type: "DROPDOWN",
172
172
  };
173
173
  }
package/index.esm.js CHANGED
@@ -163,7 +163,7 @@ const getCustomFieldValueToSaveFromRawValue = (customFieldDefinition, newValue)
163
163
  }
164
164
  }
165
165
  return {
166
- stringArrayValue: stringArrayValue,
166
+ stringArrayValue: stringArrayValue.length ? stringArrayValue : null,
167
167
  type: "DROPDOWN",
168
168
  };
169
169
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app-runtime-core",
3
- "version": "0.3.137",
3
+ "version": "0.3.138",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {