@dartech/arsenal-ui 1.3.74 → 1.3.75
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.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
@@ -5595,7 +5595,7 @@ const PropertyValueComponent = ({
|
|
5595
5595
|
padding: '4px'
|
5596
5596
|
}
|
5597
5597
|
}, {
|
5598
|
-
children: value === null ? 'null' :
|
5598
|
+
children: value === null ? 'null' : value.toString()
|
5599
5599
|
}));
|
5600
5600
|
switch (property.propertyType) {
|
5601
5601
|
case PropertyType.JSON:
|