@visns-studio/visns-components 2.7.1 → 2.7.3

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.
@@ -1806,8 +1806,16 @@ const DataGrid = forwardRef(
1806
1806
  filterEditor: filterEditor,
1807
1807
  filterEditorProps: filterEditorProps,
1808
1808
  render: ({ data }) => {
1809
- if (data) {
1810
- return parse(data);
1809
+ if (
1810
+ data &&
1811
+ data[column.id] &&
1812
+ data[column.id] !== ''
1813
+ ) {
1814
+ return (
1815
+ <span>
1816
+ {parse(String(data[column.id]))}
1817
+ </span>
1818
+ );
1811
1819
  } else {
1812
1820
  return null;
1813
1821
  }
package/package.json CHANGED
@@ -44,7 +44,7 @@
44
44
  "react-dom": "^17.0.1"
45
45
  },
46
46
  "name": "@visns-studio/visns-components",
47
- "version": "2.7.1",
47
+ "version": "2.7.3",
48
48
  "description": "Various packages to assist in the development of our Custom Applications.",
49
49
  "main": "index.js",
50
50
  "scripts": {