@visns-studio/visns-components 2.0.4 → 2.0.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.
@@ -701,7 +701,7 @@ const DataGrid = forwardRef(
701
701
  if (acc === '') {
702
702
  return data[id];
703
703
  } else {
704
- return acc[id];
704
+ return acc ? acc[id] : '';
705
705
  }
706
706
  }, '');
707
707
 
package/package.json CHANGED
@@ -40,7 +40,7 @@
40
40
  "react-dom": "^17.0.1"
41
41
  },
42
42
  "name": "@visns-studio/visns-components",
43
- "version": "2.0.4",
43
+ "version": "2.0.5",
44
44
  "description": "Various packages to assist in the development of our Custom Applications.",
45
45
  "main": "index.js",
46
46
  "scripts": {