@visns-studio/visns-components 1.3.12 → 1.3.13

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.
@@ -935,7 +935,11 @@ const DataGrid = forwardRef(
935
935
  if (acc === "") {
936
936
  return data[id];
937
937
  } else {
938
- return acc[id];
938
+ if (acc[id]) {
939
+ return acc[id];
940
+ } else {
941
+ return "";
942
+ }
939
943
  }
940
944
  }, "");
941
945
 
package/package.json CHANGED
@@ -34,7 +34,7 @@
34
34
  "react-dom": "^17.0.1"
35
35
  },
36
36
  "name": "@visns-studio/visns-components",
37
- "version": "1.3.12",
37
+ "version": "1.3.13",
38
38
  "description": "Various packages to assist in the development of our Custom Applications.",
39
39
  "main": "index.js",
40
40
  "devDependencies": {},