@trackunit/iris-app-runtime-core 0.0.63 → 0.0.64

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.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -1207,7 +1207,7 @@ $$1({ target: 'String', proto: true, forced: forcedStringTrimMethod('trim') }, {
1207
1207
  const getCustomFieldValueFromRawValue = (customFieldDefinition, newValue) => {
1208
1208
  if (customFieldDefinition.type === CustomFieldType.BOOLEAN) {
1209
1209
  return {
1210
- booleanValue: newValue === "true",
1210
+ booleanValue: newValue ? true : false,
1211
1211
  type: CustomFieldType.BOOLEAN
1212
1212
  };
1213
1213
  } else if (customFieldDefinition.type === CustomFieldType.DATE) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app-runtime-core",
3
- "version": "0.0.63",
3
+ "version": "0.0.64",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "module": "./index.js",