@visns-studio/visns-components 1.7.4 → 1.7.5

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.
@@ -1193,6 +1193,10 @@ const DataGrid = forwardRef(
1193
1193
  }, "");
1194
1194
 
1195
1195
  if (value) {
1196
+ if (Array.isArray(value)) {
1197
+ value = value[0];
1198
+ }
1199
+
1196
1200
  if (Array.isArray(column.nameFrom)) {
1197
1201
  value = column.nameFrom
1198
1202
  .map((nf) => value[nf])