@visns-studio/visns-components 2.4.6 → 2.4.7

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.
@@ -1274,7 +1274,12 @@ const DataGrid = forwardRef(
1274
1274
  .map((nf) => value[nf])
1275
1275
  .join(' ');
1276
1276
  } else {
1277
- if (value && value[column.nameFrom]) {
1277
+ if (
1278
+ value &&
1279
+ value.hasOwnProperty(
1280
+ column.nameFrom
1281
+ )
1282
+ ) {
1278
1283
  value = value[column.nameFrom];
1279
1284
  }
1280
1285
  }
package/package.json CHANGED
@@ -42,7 +42,7 @@
42
42
  "react-dom": "^17.0.1"
43
43
  },
44
44
  "name": "@visns-studio/visns-components",
45
- "version": "2.4.6",
45
+ "version": "2.4.7",
46
46
  "description": "Various packages to assist in the development of our Custom Applications.",
47
47
  "main": "index.js",
48
48
  "scripts": {