@contrail/documents
Advanced tools
Comparing version 1.0.81 to 1.0.82
@@ -21,3 +21,6 @@ "use strict"; | ||
const modelIndex = element.propertyBindings[propertyKey]; | ||
const propertyValue = util_1.ObjectUtil.getByPath(localModel, modelIndex) || ''; | ||
let propertyValue = util_1.ObjectUtil.getByPath(localModel, modelIndex); | ||
if (propertyValue === null || propertyValue === undefined) { | ||
propertyValue = ''; | ||
} | ||
util_1.ObjectUtil.setByPath(element, propertyKey, propertyValue); | ||
@@ -24,0 +27,0 @@ } |
{ | ||
"name": "@contrail/documents", | ||
"version": "1.0.81", | ||
"version": "1.0.82", | ||
"description": "Documents library for contrail platform", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
32662
890