@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 (
|
|
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